Skip to content

Commit b808d18

Browse files
committed
lldb: correct default value for Boolean
This would assert in lldb-tablegen on the string parameter being passed to a boolean value.
1 parent f65f80c commit b808d18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Target/TargetProperties.td

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ let Definition = "target" in {
170170
DefaultStringValue<"">,
171171
Desc<"Additional -Xcc flags to be passed to the Swift ClangImporter.">;
172172
def UseAllCompilerFlags: Property<"use-all-compiler-flags", "Boolean">,
173-
DefaultStringValue<"">,
173+
DefaultFalse,
174174
Desc<"The path to the SDK used to build the current target.">;
175175
def SDKPath: Property<"sdk-path", "FileSpec">,
176176
DefaultStringValue<"">,

0 commit comments

Comments
 (0)