From: Eric Christopher Date: Thu, 26 Feb 2015 00:29:54 +0000 (+0000) Subject: Fix a [-Werror,-Wreorder] initialization ordering error. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=85e76306a60fa27916f00eb6025ddc3f06074de0;p=clang Fix a [-Werror,-Wreorder] initialization ordering error. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@230589 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Frontend/Rewrite/InclusionRewriter.cpp b/lib/Frontend/Rewrite/InclusionRewriter.cpp index 5cc503ad35..865bb2928c 100644 --- a/lib/Frontend/Rewrite/InclusionRewriter.cpp +++ b/lib/Frontend/Rewrite/InclusionRewriter.cpp @@ -94,8 +94,8 @@ InclusionRewriter::InclusionRewriter(Preprocessor &PP, raw_ostream &OS, bool UseLineDirectives) : PP(PP), SM(PP.getSourceManager()), OS(OS), MainEOL("\n"), PredefinesBuffer(nullptr), ShowLineMarkers(ShowLineMarkers), - LastInsertedFileChange(FileChanges.end()), - UseLineDirectives(UseLineDirectives) {} + UseLineDirectives(UseLineDirectives), + LastInsertedFileChange(FileChanges.end()) {} /// Write appropriate line information as either #line directives or GNU line /// markers depending on what mode we're in, including the \p Filename and