r175015 - Replace 'signed' with 'int'. 'signed' is not typical for LLVM style
Dmitri Gribenko
gribozavr at gmail.com
Tue Feb 12 14:40:23 PST 2013
Author: gribozavr
Date: Tue Feb 12 16:40:22 2013
New Revision: 175015
URL: http://llvm.org/viewvc/llvm-project?rev=175015&view=rev
Log:
Replace 'signed' with 'int'. 'signed' is not typical for LLVM style
Modified:
cfe/trunk/lib/Format/TokenAnnotator.cpp
Modified: cfe/trunk/lib/Format/TokenAnnotator.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Format/TokenAnnotator.cpp?rev=175015&r1=175014&r2=175015&view=diff
==============================================================================
--- cfe/trunk/lib/Format/TokenAnnotator.cpp (original)
+++ cfe/trunk/lib/Format/TokenAnnotator.cpp Tue Feb 12 16:40:22 2013
@@ -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;
More information about the cfe-commits
mailing list