[libcxx] r198618 - Removed extra trailing underscore in #ifdef (__GNUC___ --> __GNUC__ )

Marshall Clow mclow.lists at gmail.com
Mon Jan 6 07:23:02 PST 2014


Author: marshall
Date: Mon Jan  6 09:23:02 2014
New Revision: 198618

URL: http://llvm.org/viewvc/llvm-project?rev=198618&view=rev
Log:
Removed extra trailing underscore in #ifdef (__GNUC___ --> __GNUC__ )

Modified:
    libcxx/trunk/include/__config

Modified: libcxx/trunk/include/__config
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/__config?rev=198618&r1=198617&r2=198618&view=diff
==============================================================================
--- libcxx/trunk/include/__config (original)
+++ libcxx/trunk/include/__config Mon Jan  6 09:23:02 2014
@@ -478,7 +478,7 @@ namespace std {
   }
 }
 
-#endif // __clang__ || __GNUC___ || _MSC_VER || __IBMCPP__
+#endif // __clang__ || __GNUC__ || _MSC_VER || __IBMCPP__
 
 #ifdef _LIBCPP_HAS_NO_UNICODE_CHARS
 typedef unsigned short char16_t;





More information about the cfe-commits mailing list