clayborg added inline comments.
================
Comment at: lldb/tools/lldb-vscode/lldb-vscode.cpp:64
+const bool skip_init_files = getenv("LLDBVSCODE_SKIP_INIT_FILES") != NULL;
+
----------------
make singleton function:
```
bool GetSkipInitFiles() {
static const bool skip_init = getenv("LLDBVSCODE_SKIP_INIT_FILES") != NULL;
return skip_init;
}
```
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70882/new/
https://reviews.llvm.org/D70882
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits