Skip to content

Commit 7f6e443

Browse files
committed
[lldb] Enable import-std-module's fallback mode by default
This enables the import-std-module setting's fallback mode by default. With this all expressions are from no on retried with a loaded C++ module if they fail to parse without.
1 parent 5211a31 commit 7f6e443

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Target/TargetProperties.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ let Definition = "target" in {
4646
DefaultTrue,
4747
Desc<"Automatically load Clang modules referred to by the program.">;
4848
def ImportStdModule: Property<"import-std-module", "Enum">,
49-
DefaultEnumValue<"eImportStdModuleFalse">,
49+
DefaultEnumValue<"eImportStdModuleFallback">,
5050
EnumValues<"OptionEnumValues(g_import_std_module_value_types)">,
5151
Desc<"Import the 'std' C++ module to improve expression parsing involving "
5252
" C++ standard library types.">;

0 commit comments

Comments
 (0)