aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2005-04-22 03:35:49 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2005-04-22 03:35:49 +0000
commit21bbf8d0222383cbba01191bd046736c40e25c9a (patch)
tree6296518e64fd892011eb43eb09313041611f24ae
parent3b1b6e626e42eb22869a28b02a463de5597f9822 (diff)
downloadexternal_llvm-21bbf8d0222383cbba01191bd046736c40e25c9a.zip
external_llvm-21bbf8d0222383cbba01191bd046736c40e25c9a.tar.gz
external_llvm-21bbf8d0222383cbba01191bd046736c40e25c9a.tar.bz2
Convert tabs to spaces
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21437 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Support/Annotation.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/Support/Annotation.h b/include/llvm/Support/Annotation.h
index 1b0d048..232c600 100644
--- a/include/llvm/Support/Annotation.h
+++ b/include/llvm/Support/Annotation.h
@@ -132,10 +132,10 @@ public:
inline Annotation *unlinkAnnotation(AnnotationID ID) const {
for (Annotation **A = &AnnotationList; *A; A = &((*A)->Next))
if ((*A)->getID() == ID) {
- Annotation *Ret = *A;
- *A = Ret->Next;
- Ret->Next = 0;
- return Ret;
+ Annotation *Ret = *A;
+ *A = Ret->Next;
+ Ret->Next = 0;
+ return Ret;
}
return 0;
}
@@ -187,7 +187,7 @@ struct AnnotationManager {
// Annotable::getOrCreateAnnotation method.
//
static void registerAnnotationFactory(AnnotationID ID, Factory Func,
- void *ExtraData = 0);
+ void *ExtraData = 0);
// createAnnotation - Create an annotation of the specified ID for the
// specified object, using a register annotation creation function.