Ask Your Question
3

What are the steps to activate C++17 support in the VSCode C++ Extension?

asked 2022-01-24 11:00:00 +0000

devzero gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-12-06 14:00:00 +0000

huitzilopochtli gravatar image
  1. Install the latest version of Visual Studio Code (VSCode) and the C++ Extension.

  2. Open VSCode and open the Command Palette by pressing "Ctrl+Shift+P" (Windows) or "Cmd+Shift+P" (Mac).

  3. Type "C++: Edit Configurations" in the Command Palette and select it.

  4. This opens the ccppproperties.json file where you can add the necessary configurations to enable C++17 support. Find the "configurations" section in the file and add the following lines of code:

"cppStandard": "c++17",
"intelliSenseMode": "${default}"
  1. Save the file and exit.

  2. Open your C++17 project in VSCode and build it.

  3. Now you should be able to use C++17 features in your code.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-01-24 11:00:00 +0000

Seen: 8 times

Last updated: Dec 06 '22