diff options
| author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-06-13 03:30:45 +0000 |
|---|---|---|
| committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-06-13 03:30:45 +0000 |
| commit | e014729d34f4f5cd436e096d0c74df058b98b6b3 (patch) | |
| tree | 35095073aa34f19ece1a0df6a373d1f1e0793f8c /lldb/source/Interpreter/OptionValueProperties.cpp | |
| parent | e8e4ae9f7815b47f6fc7dc0c609ecc346fa1b419 (diff) | |
| download | bcm5719-llvm-e014729d34f4f5cd436e096d0c74df058b98b6b3.tar.gz bcm5719-llvm-e014729d34f4f5cd436e096d0c74df058b98b6b3.zip | |
Interpreter: explicitly initialize base class
Initialise base class std::enable_shared_from_this explicitly. Identified by
GCC.
llvm-svn: 210881
Diffstat (limited to 'lldb/source/Interpreter/OptionValueProperties.cpp')
| -rw-r--r-- | lldb/source/Interpreter/OptionValueProperties.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/OptionValueProperties.cpp b/lldb/source/Interpreter/OptionValueProperties.cpp index 2facbeef2e9..80f2b999c08 100644 --- a/lldb/source/Interpreter/OptionValueProperties.cpp +++ b/lldb/source/Interpreter/OptionValueProperties.cpp @@ -35,6 +35,7 @@ OptionValueProperties::OptionValueProperties (const ConstString &name) : OptionValueProperties::OptionValueProperties (const OptionValueProperties &global_properties) : OptionValue (global_properties), + std::enable_shared_from_this<OptionValueProperties> (), m_name (global_properties.m_name), m_properties (global_properties.m_properties), m_name_to_index (global_properties.m_name_to_index) |

