summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2008-11-08 16:47:38 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2008-11-08 16:47:38 +0000
commit430a58edd8679fc603b5e6d16e995d9b5eb90c3e (patch)
treebe7f5f45ea09909db51db58eefc6560e0ea5adce
parent32a0379575315dcc270f9c7099b052dbb7aa7a0d (diff)
downloadbcm5719-llvm-430a58edd8679fc603b5e6d16e995d9b5eb90c3e.tar.gz
bcm5719-llvm-430a58edd8679fc603b5e6d16e995d9b5eb90c3e.zip
Silence a GCC member initialization order warning.
llvm-svn: 58914
-rw-r--r--clang/include/clang/Parse/Parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Parse/Parser.h b/clang/include/clang/Parse/Parser.h
index c7558dbd579..d9014b6a77c 100644
--- a/clang/include/clang/Parse/Parser.h
+++ b/clang/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) {}
OpenPOWER on IntegriCloud