diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-04-27 05:44:51 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-04-27 05:44:51 +0000 |
commit | d0719b183ae331e0e8731c486f21392e0eb288c3 (patch) | |
tree | c13ddccd39d6a5f14e01bf22f31213e6948623d9 /lib/Parse/ParseStmt.cpp | |
parent | d9d75e57dfa22366c0379c92beac1db82db34e9a (diff) |
Clean out some cruft I introduced when adding Sema::ClassifyName()
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130295 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseStmt.cpp')
-rw-r--r-- | lib/Parse/ParseStmt.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Parse/ParseStmt.cpp b/lib/Parse/ParseStmt.cpp index 28be864bdf..2ab2fcc69d 100644 --- a/lib/Parse/ParseStmt.cpp +++ b/lib/Parse/ParseStmt.cpp @@ -22,10 +22,6 @@ #include "clang/Basic/SourceManager.h" using namespace clang; -static bool isColonOrRSquareBracket(const Token &Tok) { - return Tok.is(tok::colon) || Tok.is(tok::r_square); -} - //===----------------------------------------------------------------------===// // C99 6.8: Statements and Blocks. //===----------------------------------------------------------------------===// |