summaryrefslogtreecommitdiff
path: root/lldb/source
diff options
context:
space:
mode:
authorTatyana Krasnukha <tatyana@synopsys.com>2018-09-26 19:41:57 +0000
committerTatyana Krasnukha <tatyana@synopsys.com>2018-09-26 19:41:57 +0000
commit9accf42e63a4bf01fe5bb66afe2ba5a958e33e48 (patch)
tree3c5d3c51ee971bfdda5f0515640c91a1d91a25a3 /lldb/source
parentffeee643837333985040b4fc4ddaa4e70b1a9c07 (diff)
Fix OSX build after r343130
Diffstat (limited to 'lldb/source')
-rw-r--r--lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp
index 1e3216c0af5..27b9c635232 100644
--- a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp
+++ b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp
@@ -188,12 +188,12 @@ const char *PlatformDarwinKernel::GetDescriptionStatic() {
static PropertyDefinition g_properties[] = {
{"search-locally-for-kexts", OptionValue::eTypeBoolean, true, true, NULL,
- NULL, "Automatically search for kexts on the local system when doing "
+ {}, "Automatically search for kexts on the local system when doing "
"kernel debugging."},
- {"kext-directories", OptionValue::eTypeFileSpecList, false, 0, NULL, NULL,
+ {"kext-directories", OptionValue::eTypeFileSpecList, false, 0, NULL, {},
"Directories/KDKs to search for kexts in when starting a kernel debug "
"session."},
- {NULL, OptionValue::eTypeInvalid, false, 0, NULL, NULL, NULL}};
+ {NULL, OptionValue::eTypeInvalid, false, 0, NULL, {}, NULL}};
enum { ePropertySearchForKexts = 0, ePropertyKextDirectories };