[cfe-commits] [libcxx] r151728 - /libcxx/trunk/src/locale.cpp

Howard Hinnant hhinnant at apple.com
Wed Feb 29 08:08:57 PST 2012


Author: hhinnant
Date: Wed Feb 29 10:08:57 2012
New Revision: 151728

URL: http://llvm.org/viewvc/llvm-project?rev=151728&view=rev
Log:
Add a warning to ctype<char>::classic_table() if not implemented.

Modified:
    libcxx/trunk/src/locale.cpp

Modified: libcxx/trunk/src/locale.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/src/locale.cpp?rev=151728&r1=151727&r2=151728&view=diff
==============================================================================
--- libcxx/trunk/src/locale.cpp (original)
+++ libcxx/trunk/src/locale.cpp Wed Feb 29 10:08:57 2012
@@ -940,6 +940,7 @@
 #else
     // Platform not supported: abort so the person doing the port knows what to
     // fix
+# warning  ctype<char>::classic_table() is not implemented
     abort();
     return NULL;
 #endif





More information about the cfe-commits mailing list