summaryrefslogtreecommitdiffstats
path: root/lldb/source/Expression/ASTResultSynthesizer.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2011-10-31 22:50:49 +0000
committerDaniel Dunbar <daniel@zuster.org>2011-10-31 22:50:49 +0000
commita08823fd107fde71cf7da9a4525a4e105468766c (patch)
tree9102c6b843fb7b11ec5553e475259654ac3b5dd7 /lldb/source/Expression/ASTResultSynthesizer.cpp
parentdaed340b57210cd3dd126ac7f0fa6348819f42ec (diff)
downloadbcm5719-llvm-a08823fd107fde71cf7da9a4525a4e105468766c.tar.gz
bcm5719-llvm-a08823fd107fde71cf7da9a4525a4e105468766c.zip
warnings: Fix a bunch of -Wreorder problems.
llvm-svn: 143381
Diffstat (limited to 'lldb/source/Expression/ASTResultSynthesizer.cpp')
-rw-r--r--lldb/source/Expression/ASTResultSynthesizer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Expression/ASTResultSynthesizer.cpp b/lldb/source/Expression/ASTResultSynthesizer.cpp
index e78f09d92d3..cb832fa5a53 100644
--- a/lldb/source/Expression/ASTResultSynthesizer.cpp
+++ b/lldb/source/Expression/ASTResultSynthesizer.cpp
@@ -34,10 +34,10 @@ ASTResultSynthesizer::ASTResultSynthesizer(ASTConsumer *passthrough,
m_ast_context (NULL),
m_passthrough (passthrough),
m_passthrough_sema (NULL),
- m_sema (NULL),
- m_desired_type (desired_type),
m_scratch_ast_context (scratch_ast_context),
- m_persistent_vars (persistent_vars)
+ m_persistent_vars (persistent_vars),
+ m_sema (NULL),
+ m_desired_type (desired_type)
{
if (!m_passthrough)
return;
OpenPOWER on IntegriCloud