Skip to content

Commit eaae92f

Browse files
author
git apple-llvm automerger
committed
Merge commit 'cde67b6663f9' from llvm.org/main into next
2 parents bad7c47 + cde67b6 commit eaae92f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/tools/lldb-dap/src-ts/debug-configuration-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export class LLDBDapConfigurationProvider
8484
continue;
8585
}
8686
const value = config.get(key);
87-
if (!value || value === cfg.default) {
87+
if (value === undefined || value === cfg.default) {
8888
continue;
8989
}
9090
switch (cfg.type) {

0 commit comments

Comments
 (0)