diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-24 20:17:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-24 20:17:22 +0000 |
commit | 60bfeb816a518ce4444632a5f1f3feb9d332f3a2 (patch) | |
tree | f451893eaee5d1b2cfa3ecee03a8be6986bdb21e /support | |
parent | faba809472e36fbb28394da6ed907d2652ca8b83 (diff) | |
download | external_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 'support')
-rw-r--r-- | support/lib/Support/Annotation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/lib/Support/Annotation.cpp b/support/lib/Support/Annotation.cpp index d0d13cd..e876bf4 100644 --- a/support/lib/Support/Annotation.cpp +++ b/support/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; |