We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ba1c23 commit 9b82222Copy full SHA for 9b82222
src/extension.ts
@@ -35,7 +35,8 @@ export async function activate(context: vscode.ExtensionContext) {
35
if (cppTools && cppTools.isActive) {
36
const cppToolsConfiguration =
37
vscode.workspace.getConfiguration('C_Cpp');
38
- const cppToolsEnabled = cppToolsConfiguration.get('intelliSenseEngine');
+ const cppToolsEnabled =
39
+ cppToolsConfiguration.get<string>('intelliSenseEngine');
40
if (cppToolsEnabled?.toLowerCase() !== 'disabled') {
41
vscode.window
42
.showWarningMessage(
0 commit comments