Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the red problem of writing Category 11 code by VSCode

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

I would like to share with you how to solve the red problem of VSCode writing Clippers 11 code. I believe most people don't know much about it, so share this article for your reference. I hope you will gain a lot after reading this article. Let's learn about it together.

Problem description

Today, when writing C++ code, I used the features of Clipper 11, and found that although VSCode can be compiled, it will report red in the appropriate place, as shown in the following figure.

And encountered the following warning when compiling:

C1.cpp:62:14: warning: 'auto' type specifier is a clients 11 extension [- Wc++11-extensions]

For (auto a: vec)

The cause of the problem:

According to the compilation parameters, VSCode can not detect the syntax related to Clover 11, so there are some phenomena such as red and warning.

Solution method

You can follow the steps shown below:

Click the pinion in the downloaded CumberCraft + plug-in

Select the Extension Setting option

In the options for Compiler Args, click Edit in setting.json

Finally, add the following compilation parameters to the pop-up setting.json file:

{"C_Cpp.default.compilerArgs": ["- g", "${file}", "- std=c++11", "- o", "${fileDirname} / ${fileBasenameNoExtension}"]} above are all the contents of this article entitled "how to solve the red problem of VSCode writing Clipper 11 code". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report