Silence an init order warning.

This commit is contained in:
Vassil Vassilev 2013-11-25 16:44:22 +01:00 committed by sftnight
parent 99e19e1399
commit d00d9c01c1

View File

@ -29,8 +29,8 @@ namespace cling {
ClangInternalState::ClangInternalState(ASTContext& AC, Preprocessor& PP,
llvm::Module& M, const std::string& name)
: m_ASTContext(AC), m_Module(M), m_DiffCommand("diff -u ")
, m_Name(name), m_Preprocessor(PP) {
: m_ASTContext(AC), m_Preprocessor(PP), m_Module(M),
m_DiffCommand("diff -u "), m_Name(name) {
store();
}