diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-05-14 21:31:46 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-05-14 21:31:46 +0000 |
commit | 014399c0de098ab25e6906a5d2b05df92086864a (patch) | |
tree | 903011cfdb090c792000c94a8f3cd13e0cf9a9ca /clang/lib/AST/MicrosoftMangle.cpp | |
parent | 9d383858610141f9080b74bb2aba46b16abf8a73 (diff) | |
download | bcm5719-llvm-014399c0de098ab25e6906a5d2b05df92086864a.tar.gz bcm5719-llvm-014399c0de098ab25e6906a5d2b05df92086864a.zip |
Fix clang -Werror build due to -Wreorder violation introduced in r181825
llvm-svn: 181834
Diffstat (limited to 'clang/lib/AST/MicrosoftMangle.cpp')
-rw-r--r-- | clang/lib/AST/MicrosoftMangle.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/AST/MicrosoftMangle.cpp b/clang/lib/AST/MicrosoftMangle.cpp index dbd37f02019..d03060b391d 100644 --- a/clang/lib/AST/MicrosoftMangle.cpp +++ b/clang/lib/AST/MicrosoftMangle.cpp @@ -69,17 +69,17 @@ public: MicrosoftCXXNameMangler(MangleContext &C, raw_ostream &Out_) : Context(C), Out(Out_), Structor(0), StructorType(-1), + UseNameBackReferences(true), PointersAre64Bit(C.getASTContext().getTargetInfo().getPointerWidth(0) == - 64), - UseNameBackReferences(true) { } + 64) { } MicrosoftCXXNameMangler(MangleContext &C, raw_ostream &Out_, const CXXDestructorDecl *D, CXXDtorType Type) : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type), + UseNameBackReferences(true), PointersAre64Bit(C.getASTContext().getTargetInfo().getPointerWidth(0) == - 64), - UseNameBackReferences(true) { } + 64) { } raw_ostream &getStream() const { return Out; } |