diff options
Diffstat (limited to 'contrib/llvm/lib/Support/LocaleGeneric.inc')
-rw-r--r-- | contrib/llvm/lib/Support/LocaleGeneric.inc | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/contrib/llvm/lib/Support/LocaleGeneric.inc b/contrib/llvm/lib/Support/LocaleGeneric.inc deleted file mode 100644 index 278deee..0000000 --- a/contrib/llvm/lib/Support/LocaleGeneric.inc +++ /dev/null @@ -1,17 +0,0 @@ -#include <cwctype> - -namespace llvm { -namespace sys { -namespace locale { - -int columnWidth(StringRef s) { - return s.size(); -} - -bool isPrint(int c) { - return iswprint(c); -} - -} -} -} |