summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/CharInfo.h
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2013-02-09 15:24:28 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2013-02-09 15:24:28 +0000
commita2f138a5c5ea695dc01cac361268ed26a8f0db7d (patch)
treeb8e2fb4df20c4c2c4e46a616bb311bf899e585ca /include/clang/Basic/CharInfo.h
parentbf8814478fddfa611911bdbd6a53a6614938cc63 (diff)
Remove unreachable statement
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174811 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/CharInfo.h')
-rw-r--r--include/clang/Basic/CharInfo.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/clang/Basic/CharInfo.h b/include/clang/Basic/CharInfo.h
index 2522face65..d0afda4370 100644
--- a/include/clang/Basic/CharInfo.h
+++ b/include/clang/Basic/CharInfo.h
@@ -124,7 +124,6 @@ LLVM_READONLY static inline bool isAlphanumeric(unsigned char c) {
LLVM_READONLY static inline bool isHexDigit(unsigned char c) {
using namespace charinfo;
return (InfoTable[c] & (CHAR_DIGIT|CHAR_XLETTER)) != 0;
- return true;
}
/// Return true if this character is an ASCII punctuation character.