diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-02-12 22:40:22 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-02-12 22:40:22 +0000 |
commit | 64bbf7e5f327b7e2e56d18035c2a3039f66d2cf9 (patch) | |
tree | 36b8c3370941a85fadff0b334854326965208e9d /clang/lib/Format/TokenAnnotator.cpp | |
parent | a6307574d6d31c16db273734e6bb6b516eeeea81 (diff) | |
download | bcm5719-llvm-64bbf7e5f327b7e2e56d18035c2a3039f66d2cf9.tar.gz bcm5719-llvm-64bbf7e5f327b7e2e56d18035c2a3039f66d2cf9.zip |
Replace 'signed' with 'int'. 'signed' is not typical for LLVM style
llvm-svn: 175015
Diffstat (limited to 'clang/lib/Format/TokenAnnotator.cpp')
-rw-r--r-- | clang/lib/Format/TokenAnnotator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Format/TokenAnnotator.cpp b/clang/lib/Format/TokenAnnotator.cpp index 5794f5ab5d4..2370597dbb3 100644 --- a/clang/lib/Format/TokenAnnotator.cpp +++ b/clang/lib/Format/TokenAnnotator.cpp @@ -705,7 +705,7 @@ public: ExpressionParser(AnnotatedLine &Line) : Current(&Line.First) {} /// \brief Parse expressions with the given operatore precedence. - void parse(signed Precedence = prec::Unknown) { + void parse(int Precedence = prec::Unknown) { if (Precedence > prec::PointerToMember || Current == NULL) return; |