diff options
author | Howard Hinnant <hhinnant@apple.com> | 2012-02-29 16:08:57 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2012-02-29 16:08:57 +0000 |
commit | 9e849ad30266ed0efe626169e398b80de8e84aac (patch) | |
tree | 43af18560254cdb4597f75cc7fcd380a5b636846 | |
parent | 27e618efb6afc5d80ee1485f8b9df14492d5cd80 (diff) | |
download | bcm5719-llvm-9e849ad30266ed0efe626169e398b80de8e84aac.tar.gz bcm5719-llvm-9e849ad30266ed0efe626169e398b80de8e84aac.zip |
Add a warning to ctype<char>::classic_table() if not implemented.
llvm-svn: 151728
-rw-r--r-- | libcxx/src/locale.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxx/src/locale.cpp b/libcxx/src/locale.cpp index 089fae6a3ab..109629d646f 100644 --- a/libcxx/src/locale.cpp +++ b/libcxx/src/locale.cpp @@ -940,6 +940,7 @@ ctype<char>::classic_table() _NOEXCEPT #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 |