aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support/Annotation.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-24 20:17:22 +0000
committerChris Lattner <sabre@nondot.org>2002-07-24 20:17:22 +0000
commit60bfeb816a518ce4444632a5f1f3feb9d332f3a2 (patch)
treef451893eaee5d1b2cfa3ecee03a8be6986bdb21e /lib/Support/Annotation.cpp
parentfaba809472e36fbb28394da6ed907d2652ca8b83 (diff)
downloadexternal_llvm-60bfeb816a518ce4444632a5f1f3feb9d332f3a2.zip
external_llvm-60bfeb816a518ce4444632a5f1f3feb9d332f3a2.tar.gz
external_llvm-60bfeb816a518ce4444632a5f1f3feb9d332f3a2.tar.bz2
Fix problem that GCC3.1 doesn't like.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3050 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Annotation.cpp')
-rw-r--r--lib/Support/Annotation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/Annotation.cpp b/lib/Support/Annotation.cpp
index d0d13cd..e876bf4 100644
--- a/lib/Support/Annotation.cpp
+++ b/lib/Support/Annotation.cpp
@@ -35,7 +35,7 @@ AnnotationID AnnotationManager::getID(const string &Name) { // Name -> ID
// getID - Name -> ID + registration of a factory function for demand driven
// annotation support.
AnnotationID AnnotationManager::getID(const string &Name, Factory Fact,
- void *Data=0) {
+ void *Data) {
AnnotationID Result(getID(Name));
registerAnnotationFactory(Result, Fact, Data);
return Result;