summaryrefslogtreecommitdiff
path: root/contrib/llvm/lib/Support/Locale.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm/lib/Support/Locale.cpp')
-rw-r--r--contrib/llvm/lib/Support/Locale.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/contrib/llvm/lib/Support/Locale.cpp b/contrib/llvm/lib/Support/Locale.cpp
deleted file mode 100644
index 1b3300b90f2a..000000000000
--- a/contrib/llvm/lib/Support/Locale.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "llvm/Support/Locale.h"
-#include "llvm/ADT/StringRef.h"
-#include "llvm/Support/Unicode.h"
-
-namespace llvm {
-namespace sys {
-namespace locale {
-
-int columnWidth(StringRef Text) {
- return llvm::sys::unicode::columnWidthUTF8(Text);
-}
-
-bool isPrint(int UCS) {
- return llvm::sys::unicode::isPrintable(UCS);
-}
-
-} // namespace locale
-} // namespace sys
-} // namespace llvm