aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/clang/Parse/Parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Parse/Parser.h b/include/clang/Parse/Parser.h
index c7558dbd57..d9014b6a77 100644
--- a/include/clang/Parse/Parser.h
+++ b/include/clang/Parse/Parser.h
@@ -754,8 +754,8 @@ private:
/// enter a new C++ declarator scope and exit it when the function is
/// finished.
class DeclaratorScopeObj {
- CXXScopeSpec &SS;
Parser &P;
+ CXXScopeSpec &SS;
public:
DeclaratorScopeObj(Parser &p, CXXScopeSpec &ss) : P(p), SS(ss) {}