diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2012-08-31 02:29:37 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2012-08-31 02:29:37 +0000 |
commit | 324adad9660f33c5b867825f1eb21bb30bc99689 (patch) | |
tree | 012e4ae7f0e4a0c1cd68746d2158abb99676beb9 /clang/lib/Lex/Lexer.cpp | |
parent | 3ca956f7152f7d19b9e110119ac35ba3de086726 (diff) | |
download | llvm-324adad9660f33c5b867825f1eb21bb30bc99689.zip llvm-324adad9660f33c5b867825f1eb21bb30bc99689.tar.gz llvm-324adad9660f33c5b867825f1eb21bb30bc99689.tar.bz2 |
Make a bunch of methods on Lexer private.
llvm-svn: 162970
Diffstat (limited to 'clang/lib/Lex/Lexer.cpp')
-rw-r--r-- | clang/lib/Lex/Lexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/Lexer.cpp b/clang/lib/Lex/Lexer.cpp index 5212dd8..e214ece 100644 --- a/clang/lib/Lex/Lexer.cpp +++ b/clang/lib/Lex/Lexer.cpp @@ -1534,7 +1534,7 @@ FinishIdentifier: /// isHexaLiteral - Return true if Start points to a hex constant. /// in microsoft mode (where this is supposed to be several different tokens). -static bool isHexaLiteral(const char *Start, const LangOptions &LangOpts) { +bool Lexer::isHexaLiteral(const char *Start, const LangOptions &LangOpts) { unsigned Size; char C1 = Lexer::getCharAndSizeNoWarn(Start, Size, LangOpts); if (C1 != '0') |