[cfe-commits] [libcxxabi] r149632 - /libcxxabi/trunk/include/cxxabi.h

Howard Hinnant hhinnant at apple.com
Thu Feb 2 12:47:05 PST 2012


Author: hhinnant
Date: Thu Feb  2 14:47:05 2012
New Revision: 149632

URL: http://llvm.org/viewvc/llvm-project?rev=149632&view=rev
Log:
Add version number to this library so we can recognize when we're using it.

Modified:
    libcxxabi/trunk/include/cxxabi.h

Modified: libcxxabi/trunk/include/cxxabi.h
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/include/cxxabi.h?rev=149632&r1=149631&r2=149632&view=diff
==============================================================================
--- libcxxabi/trunk/include/cxxabi.h (original)
+++ libcxxabi/trunk/include/cxxabi.h Thu Feb  2 14:47:05 2012
@@ -18,9 +18,9 @@
 #include <stddef.h>
 #include <stdint.h>
 
+#define _LIBCPPABI_VERSION 1001
 #define LIBCXXABI_NORETURN  __attribute__((noreturn))
 
-
 #ifdef __cplusplus
 
 namespace std {
@@ -167,7 +167,6 @@
 
   } // extern "C"
 } // namespace __cxxabiv1
-namespace abi = __cxxabiv1;
 
 #endif // __cplusplus
 





More information about the cfe-commits mailing list