forked from OSchip/llvm-project
Replace 'signed' with 'int'. 'signed' is not typical for LLVM style
llvm-svn: 175015
This commit is contained in:
parent
a6307574d6
commit
64bbf7e5f3
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue