Replace 'signed' with 'int'. 'signed' is not typical for LLVM style

llvm-svn: 175015
This commit is contained in:
Dmitri Gribenko 2013-02-12 22:40:22 +00:00
parent a6307574d6
commit 64bbf7e5f3
1 changed files with 1 additions and 1 deletions

View 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;