File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -212,6 +212,8 @@ Improvements to Clang's diagnostics
212
212
(`#51567: <https://github.com/llvm/llvm-project/issues/51567 >`_)
213
213
- Clang now diagnoses narrowing implicit conversions on variable initializers in immediate
214
214
function context and on constexpr variable template initializers.
215
+ - Clang now prints its 'note' diagnostic in cyan instead of black, to be more compatible
216
+ with terminals with dark background colors. This is also more consistent with GCC.
215
217
216
218
Bug Fixes in This Version
217
219
-------------------------
Original file line number Diff line number Diff line change 24
24
25
25
using namespace clang ;
26
26
27
- static const enum raw_ostream::Colors noteColor =
28
- raw_ostream::BLACK;
27
+ static const enum raw_ostream::Colors noteColor = raw_ostream::CYAN;
29
28
static const enum raw_ostream::Colors remarkColor =
30
29
raw_ostream::BLUE;
31
30
static const enum raw_ostream::Colors fixitColor =
You can’t perform that action at this time.
0 commit comments