mitaki28 / vscode-clang

Completion and Diagnostic for C/C++/Objective-C using Clang
MIT License
128 stars 24 forks source link

Default settings comment is wrong #26

Closed helinwang closed 7 years ago

helinwang commented 8 years ago

I think

// Compiler options for C++ (e.g. ['-std=c++11'])
    "clang.cxxflags": [],

should be

// Compiler options for C++ (e.g. ["-std=c++11"])
    "clang.cxxflags": [],

because only "-std=c++11" worked for me.

san-chang commented 8 years ago

only "-std=c++11" worked for me too