diff options
author | Stephen Wilson <wilsons@start.ca> | 2011-04-11 19:41:40 +0000 |
---|---|---|
committer | Stephen Wilson <wilsons@start.ca> | 2011-04-11 19:41:40 +0000 |
commit | 71c21d18c3a29abf03e7904b42d84ccfc3be036b (patch) | |
tree | 83d783264562df4449105ff022dff7e4506e5c98 /lldb/source/Expression/ClangExpressionDeclMap.cpp | |
parent | 2b899767e1ed8518e48952effc449e17922b8ef3 (diff) | |
download | bcm5719-llvm-71c21d18c3a29abf03e7904b42d84ccfc3be036b.tar.gz bcm5719-llvm-71c21d18c3a29abf03e7904b42d84ccfc3be036b.zip |
Order of initialization lists.
This patch fixes all of the warnings due to unordered initialization lists.
Patch by Marco Minutoli.
llvm-svn: 129290
Diffstat (limited to 'lldb/source/Expression/ClangExpressionDeclMap.cpp')
-rw-r--r-- | lldb/source/Expression/ClangExpressionDeclMap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Expression/ClangExpressionDeclMap.cpp b/lldb/source/Expression/ClangExpressionDeclMap.cpp index 411651fa5da..99f0e60a0f0 100644 --- a/lldb/source/Expression/ClangExpressionDeclMap.cpp +++ b/lldb/source/Expression/ClangExpressionDeclMap.cpp @@ -50,9 +50,9 @@ using namespace clang; ClangExpressionDeclMap::ClangExpressionDeclMap (bool keep_result_in_memory) : m_found_entities (), m_struct_members (), + m_keep_result_in_memory (keep_result_in_memory), m_parser_vars (), - m_struct_vars (), - m_keep_result_in_memory (keep_result_in_memory) + m_struct_vars () { EnableStructVars(); } |