mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-24 00:25:07 +00:00
Add comment with short issue description. (#545)
This commit is contained in:
parent
59769df8b5
commit
410fb69e25
@ -75,6 +75,10 @@ struct ProjectConfig {
|
|||||||
|
|
||||||
// TODO: See
|
// TODO: See
|
||||||
// https://github.com/Valloric/ycmd/blob/master/ycmd/completers/cpp/flags.py.
|
// https://github.com/Valloric/ycmd/blob/master/ycmd/completers/cpp/flags.py.
|
||||||
|
// Flags '-include' and '-include-pch' are blacklisted here cause libclang returns error in case when
|
||||||
|
// precompiled header was generated by a different compiler (even two different builds of same version
|
||||||
|
// of clang for the same platform are incompatible). Note that libclang always generate it's own pch
|
||||||
|
// internally. For details, see https://github.com/Valloric/ycmd/issues/892 .
|
||||||
std::vector<std::string> kBlacklistMulti = {
|
std::vector<std::string> kBlacklistMulti = {
|
||||||
"-MF", "-MT", "-MQ", "-o", "--serialize-diagnostics", "-Xclang", "-include", "-include-pch"};
|
"-MF", "-MT", "-MQ", "-o", "--serialize-diagnostics", "-Xclang", "-include", "-include-pch"};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user