From fcbaf48f21daac4d8ca0d75361116b1b7478bcfc Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Wed, 29 Feb 2012 16:08:57 +0000 Subject: [PATCH] Add a warning to ctype::classic_table() if not implemented. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@151728 91177308-0d34-0410-b5e6-96231b3b80d8 --- src/locale.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/locale.cpp b/src/locale.cpp index 089fae6a3..109629d64 100644 --- a/src/locale.cpp +++ b/src/locale.cpp @@ -940,6 +940,7 @@ ctype::classic_table() _NOEXCEPT #else // Platform not supported: abort so the person doing the port knows what to // fix +# warning ctype::classic_table() is not implemented abort(); return NULL; #endif