[Lldb-commits] [lldb] r154055 - /lldb/trunk/source/Core/ValueObjectConstResult.cpp

Bill Wendling isanbard at gmail.com
Wed Apr 4 14:19:58 PDT 2012


Author: void
Date: Wed Apr  4 16:19:57 2012
New Revision: 154055

URL: http://llvm.org/viewvc/llvm-project?rev=154055&view=rev
Log:
Order the initializations so that they reflect how they're declared in the class.

Modified:
    lldb/trunk/source/Core/ValueObjectConstResult.cpp

Modified: lldb/trunk/source/Core/ValueObjectConstResult.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/ValueObjectConstResult.cpp?rev=154055&r1=154054&r2=154055&view=diff
==============================================================================
--- lldb/trunk/source/Core/ValueObjectConstResult.cpp (original)
+++ lldb/trunk/source/Core/ValueObjectConstResult.cpp Wed Apr  4 16:19:57 2012
@@ -261,9 +261,9 @@
     const Value &value,
     const ConstString &name) :
     ValueObject (exe_scope),
+    m_clang_ast (clang_ast),
     m_type_name (),
     m_byte_size (0),
-    m_clang_ast (clang_ast),
     m_impl(this)
 {
     m_value = value;





More information about the lldb-commits mailing list