Add a warning to ctype<char>::classic_table() if not implemented.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@151728 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant 2012-02-29 16:08:57 +00:00
parent d0ed21e94d
commit fcbaf48f21

View File

@ -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