summaryrefslogtreecommitdiffstats
path: root/lldb/source/Expression/ClangUserExpression.cpp
diff options
context:
space:
mode:
authorStephen Wilson <wilsons@start.ca>2011-04-11 19:41:40 +0000
committerStephen Wilson <wilsons@start.ca>2011-04-11 19:41:40 +0000
commit71c21d18c3a29abf03e7904b42d84ccfc3be036b (patch)
tree83d783264562df4449105ff022dff7e4506e5c98 /lldb/source/Expression/ClangUserExpression.cpp
parent2b899767e1ed8518e48952effc449e17922b8ef3 (diff)
downloadbcm5719-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/ClangUserExpression.cpp')
-rw-r--r--lldb/source/Expression/ClangUserExpression.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Expression/ClangUserExpression.cpp b/lldb/source/Expression/ClangUserExpression.cpp
index d560e0fc42d..c86a771d09c 100644
--- a/lldb/source/Expression/ClangUserExpression.cpp
+++ b/lldb/source/Expression/ClangUserExpression.cpp
@@ -45,11 +45,11 @@ ClangUserExpression::ClangUserExpression (const char *expr,
m_expr_text (expr),
m_expr_prefix (expr_prefix ? expr_prefix : ""),
m_transformed_text (),
+ m_desired_type (NULL, NULL),
m_cplusplus (false),
m_objectivec (false),
m_needs_object_ptr (false),
- m_const_object (false),
- m_desired_type (NULL, NULL)
+ m_const_object (false)
{
}
OpenPOWER on IntegriCloud