diff options
| author | Bill Wendling <isanbard@gmail.com> | 2012-04-03 08:46:13 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2012-04-03 08:46:13 +0000 |
| commit | d53b5dedb2b4c47f45c427ad006c34fae5c9d0e1 (patch) | |
| tree | d939c65cb2027d2419b4a27cdf5fea7e9ea8fa51 | |
| parent | 9e5bf875161394d488e17feec8b84ec851a3bb2c (diff) | |
| download | bcm5719-llvm-d53b5dedb2b4c47f45c427ad006c34fae5c9d0e1.tar.gz bcm5719-llvm-d53b5dedb2b4c47f45c427ad006c34fae5c9d0e1.zip | |
Initialize ivars in the correct order.
llvm-svn: 153947
| -rw-r--r-- | lldb/source/Expression/ClangUserExpression.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Expression/ClangUserExpression.cpp b/lldb/source/Expression/ClangUserExpression.cpp index 664854f1fac..838088084d6 100644 --- a/lldb/source/Expression/ClangUserExpression.cpp +++ b/lldb/source/Expression/ClangUserExpression.cpp @@ -53,15 +53,15 @@ ClangUserExpression::ClangUserExpression (const char *expr, m_language (language), m_transformed_text (), m_desired_type (desired_type), + m_enforce_valid_object (false), m_cplusplus (false), m_objectivec (false), + m_static_method(false), m_needs_object_ptr (false), m_const_object (false), - m_static_method(false), m_target (NULL), m_evaluated_statically (false), - m_const_result (), - m_enforce_valid_object (false) + m_const_result () { switch (m_language) { |

