Added to LSP in version 3.14
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
- Build Status
Buildable 32516 Build 32515: arc lint + arc unit
Event Timeline
clang-tools-extra/trunk/clangd/CodeComplete.cpp | ||
---|---|---|
925 ↗ | (On Diff #202884) | 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 ↗ | (On Diff #202884) | Should be a reference, thanks for bringing that up! I'll send a fix. |
clang-tools-extra/trunk/clangd/CodeComplete.cpp | ||
---|---|---|
925 ↗ | (On Diff #202884) | 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 ↗ | (On Diff #202884) | Thanks! |