Skip to content

Commit 9396cd9

Browse files
committed
Address PR comments
1 parent 3f22eeb commit 9396cd9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Extension/src/LanguageServer/extension.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,8 @@ export async function activate(): Promise<void> {
254254

255255
if (util.extensionContext) {
256256
// lmTools wasn't stabilized until 1.95, but (as of October 2024)
257-
// cpptools can be installed on versions of VS Code as old as 1.67.
257+
// cpptools can be installed on older versions of VS Code. See
258+
// https://github.com/microsoft/vscode-cpptools/blob/main/Extension/package.json#L14
258259
const version = util.getVsCodeVersion();
259260
if (version[0] > 1 || (version[0] === 1 && version[1] >= 95)) {
260261
const tool = vscode.lm.registerTool('cpptools-lmtool-configuration', new CppConfigurationLanguageModelTool());

0 commit comments

Comments
 (0)