diff options
Diffstat (limited to 'lldb/source/Expression')
-rw-r--r-- | lldb/source/Expression/ASTResultSynthesizer.cpp | 6 | ||||
-rw-r--r-- | lldb/source/Expression/ClangUserExpression.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Expression/IRInterpreter.cpp | 2 |
3 files changed, 6 insertions, 6 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; diff --git a/lldb/source/Expression/ClangUserExpression.cpp b/lldb/source/Expression/ClangUserExpression.cpp index 7521bcbab61..8261099c9ef 100644 --- a/lldb/source/Expression/ClangUserExpression.cpp +++ b/lldb/source/Expression/ClangUserExpression.cpp @@ -54,9 +54,9 @@ ClangUserExpression::ClangUserExpression (const char *expr, m_objectivec (false), m_needs_object_ptr (false), m_const_object (false), + m_target (NULL), m_evaluated_statically (false), - m_const_result (), - m_target (NULL) + m_const_result () { } diff --git a/lldb/source/Expression/IRInterpreter.cpp b/lldb/source/Expression/IRInterpreter.cpp index 97130d1d39d..5bb59a6d35a 100644 --- a/lldb/source/Expression/IRInterpreter.cpp +++ b/lldb/source/Expression/IRInterpreter.cpp @@ -419,8 +419,8 @@ public: InterpreterStackFrame (TargetData &target_data, Memory &memory, lldb_private::ClangExpressionDeclMap &decl_map) : - m_target_data (target_data), m_memory (memory), + m_target_data (target_data), m_decl_map (decl_map) { m_byte_order = (target_data.isLittleEndian() ? lldb::eByteOrderLittle : lldb::eByteOrderBig); |