Replace 'signed' with 'int'. 'signed' is not typical for LLVM style
authorDmitri Gribenko <gribozavr@gmail.com>
Tue, 12 Feb 2013 22:40:22 +0000 (22:40 +0000)
committerDmitri Gribenko <gribozavr@gmail.com>
Tue, 12 Feb 2013 22:40:22 +0000 (22:40 +0000)
llvm-svn: 175015

clang/lib/Format/TokenAnnotator.cpp

index 5794f5a..2370597 100644 (file)
@@ -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;