diff options
| author | Bill Wendling <isanbard@gmail.com> | 2012-04-04 21:19:57 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2012-04-04 21:19:57 +0000 |
| commit | c359aafc55a8be4cf3a69ffbc0a619ee753b3c5d (patch) | |
| tree | b3e6521472cecc99adf3363ed7dab98e8eaa6008 /lldb/source/Core/ValueObjectConstResult.cpp | |
| parent | 4743c6e159c03b378e90c5ccb3d0fe50b4fa1cb5 (diff) | |
| download | bcm5719-llvm-c359aafc55a8be4cf3a69ffbc0a619ee753b3c5d.tar.gz bcm5719-llvm-c359aafc55a8be4cf3a69ffbc0a619ee753b3c5d.zip | |
Order the initializations so that they reflect how they're declared in the class.
llvm-svn: 154055
Diffstat (limited to 'lldb/source/Core/ValueObjectConstResult.cpp')
| -rw-r--r-- | lldb/source/Core/ValueObjectConstResult.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/ValueObjectConstResult.cpp b/lldb/source/Core/ValueObjectConstResult.cpp index 08d983276a9..f5ddde59c7e 100644 --- a/lldb/source/Core/ValueObjectConstResult.cpp +++ b/lldb/source/Core/ValueObjectConstResult.cpp @@ -261,9 +261,9 @@ ValueObjectConstResult::ValueObjectConstResult ( 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; |

