diff options
author | Yaron Keren <yaron.keren@gmail.com> | 2015-05-02 19:29:29 +0000 |
---|---|---|
committer | Yaron Keren <yaron.keren@gmail.com> | 2015-05-02 19:29:29 +0000 |
commit | 203439f1f8732fe5ef1299c9bc55dc20dd15f84b (patch) | |
tree | d5d001afcb5a52e0df0e1224509c76b6356d88a3 /clang/lib/Lex/PPExpressions.cpp | |
parent | 2155f8042643c955fe84df6f2478a7c938b7939e (diff) | |
download | bcm5719-llvm-203439f1f8732fe5ef1299c9bc55dc20dd15f84b.tar.gz bcm5719-llvm-203439f1f8732fe5ef1299c9bc55dc20dd15f84b.zip |
clang-format function definition header. NFC.
llvm-svn: 236390
Diffstat (limited to 'clang/lib/Lex/PPExpressions.cpp')
-rw-r--r-- | clang/lib/Lex/PPExpressions.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/Lex/PPExpressions.cpp b/clang/lib/Lex/PPExpressions.cpp index 9246fb188f1..d05ec672c8b 100644 --- a/clang/lib/Lex/PPExpressions.cpp +++ b/clang/lib/Lex/PPExpressions.cpp @@ -730,8 +730,7 @@ static bool EvaluateDirectiveSubExpr(PPValue &LHS, unsigned MinPrec, /// EvaluateDirectiveExpression - Evaluate an integer constant expression that /// may occur after a #if or #elif directive. If the expression is equivalent /// to "!defined(X)" return X in IfNDefMacro. -bool Preprocessor:: -EvaluateDirectiveExpression(IdentifierInfo *&IfNDefMacro) { +bool Preprocessor::EvaluateDirectiveExpression(IdentifierInfo *&IfNDefMacro) { SaveAndRestore<bool> PPDir(ParsingIfOrElifDirective, true); // Save the current state of 'DisableMacroExpansion' and reset it to false. If // 'DisableMacroExpansion' is true, then we must be in a macro argument list |