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 | b0112e122650cbc9a1a0af42ad84b7178ba0a876 (patch) | |
tree | c4af06f737766c0337c776c6303ae3631d30841c | |
parent | 064d88e0f9a3f1deca71b98931361f3f5c9ce192 (diff) |
Replace 'signed' with 'int'. 'signed' is not typical for LLVM style
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175015 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Format/TokenAnnotator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Format/TokenAnnotator.cpp b/lib/Format/TokenAnnotator.cpp index 5794f5ab5d..2370597dbb 100644 --- a/lib/Format/TokenAnnotator.cpp +++ b/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; |