This fixes a bunch of logging-related FIXMEs.
Details
Details
Diff Detail
Diff Detail
- Build Status
Buildable 10360 Build 10360: arc lint + arc unit
Event Timeline
Comment Actions
Looks very nice! Just a few questions.
clangd/ClangdServer.h | ||
---|---|---|
24 | forward declare? | |
clangd/ClangdUnit.h | ||
13 | forward declare? | |
clangd/GlobalCompilationDatabase.cpp | ||
87–88 | Will this log for every parent folder that doesn't contain the compilation database? I haven't tried to confirm. Just wondering because it could get very spammy. | |
clangd/GlobalCompilationDatabase.h | ||
13 | forward declare instead? |
Comment Actions
Addressed review comments.
- Replaced include with forward declaration in headers.
- Removed logging on each call to loadFromDirectory.
clangd/GlobalCompilationDatabase.cpp | ||
---|---|---|
87–88 | You're totally right, it's incredibly spammy. I've removed logging from this line. |
forward declare?