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

llvm-svn: 151728
This commit is contained in:
Howard Hinnant 2012-02-29 16:08:57 +00:00
parent 27e618efb6
commit 9e849ad302
1 changed files with 1 additions and 0 deletions

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