diff options
author | Greg Clayton <gclayton@apple.com> | 2015-04-16 23:11:06 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2015-04-16 23:11:06 +0000 |
commit | 253204e4a175ee14f3f9a27592f7336f7cf29297 (patch) | |
tree | 7e1245b59e81677a750c5edaf8841a23b7554091 | |
parent | d276c13e117262798f54c79f5d4f352ca99093ec (diff) | |
download | bcm5719-llvm-253204e4a175ee14f3f9a27592f7336f7cf29297.tar.gz bcm5719-llvm-253204e4a175ee14f3f9a27592f7336f7cf29297.zip |
Fix warnings about construction ordering.
llvm-svn: 235143
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp index c56ee0d9183..dd4b106882c 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp @@ -79,8 +79,8 @@ GDBRemoteCommunicationClient::GDBRemoteCommunicationClient() : m_supports_QSaveRegisterState (eLazyBoolCalculate), m_supports_qXfer_auxv_read (eLazyBoolCalculate), m_supports_qXfer_libraries_read (eLazyBoolCalculate), - m_supports_qXfer_features_read (eLazyBoolCalculate), m_supports_qXfer_libraries_svr4_read (eLazyBoolCalculate), + m_supports_qXfer_features_read (eLazyBoolCalculate), m_supports_augmented_libraries_svr4_read (eLazyBoolCalculate), m_supports_jThreadExtendedInfo (eLazyBoolCalculate), m_supports_qProcessInfoPID (true), |