Closed Teemperor closed 7 years ago
Requesting clang to complete a "-Wno-XXX" flag with the help of the
--autocomplete
flag is returning wrong results in the current clang 5.0 branch.clang 5.0 is for example completing "-Wno" with "-Wnoeverything" instead of "-Wno-everything" (notice the missing "-" behind the "no"), causing the bash completion to suggest the wrong flag to the user.
This was fixed by Yuka in this commit: https://reviews.llvm.org/rL308824
Merged to 5.0 in r309130. Thanks!
Extended Description
Requesting clang to complete a "-Wno-XXX" flag with the help of the
--autocomplete
flag is returning wrong results in the current clang 5.0 branch.clang 5.0 is for example completing "-Wno" with "-Wnoeverything" instead of "-Wno-everything" (notice the missing "-" behind the "no"), causing the bash completion to suggest the wrong flag to the user.
This was fixed by Yuka in this commit: https://reviews.llvm.org/rL308824