Added to LSP in version 3.14
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
| clang-tools-extra/trunk/clangd/CodeComplete.cpp | ||
|---|---|---|
| 925 | Hi! gcc (7.4) warns on this code: error: parameter 'Signal' set but not used [-Werror=unused-but-set-parameter]
                              SignatureQualitySignals Signal) const {
                                                      ^~~~~~Should Signal be a reference? Or is it specifically not a reference right now due to the FIXME? | |
| clang-tools-extra/trunk/clangd/CodeComplete.cpp | ||
|---|---|---|
| 925 | Should be a reference, thanks for bringing that up! I'll send a fix. | |
| clang-tools-extra/trunk/clangd/CodeComplete.cpp | ||
|---|---|---|
| 925 | Removed this flag altogether in r362686, it is not used and has we have no tests for it. | |
| clang-tools-extra/trunk/clangd/CodeComplete.cpp | ||
|---|---|---|
| 925 | Thanks! | |
Hi!
gcc (7.4) warns on this code:
error: parameter 'Signal' set but not used [-Werror=unused-but-set-parameter] SignatureQualitySignals Signal) const { ^~~~~~Should Signal be a reference? Or is it specifically not a reference right now due to the FIXME?