[LLVMbugs] [Bug 10859] New: Macro expansion notes are not colored
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Sun Sep 4 14:12:18 PDT 2011
http://llvm.org/bugs/show_bug.cgi?id=10859
Summary: Macro expansion notes are not colored
Product: clang
Version: trunk
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P
Component: Frontend
AssignedTo: unassignedclangbugs at nondot.org
ReportedBy: dblaikie at gmail.com
CC: llvmbugs at cs.uiuc.edu
Given
#define call fob();
void foo();
int main() { call }
Compiled as C++, clang's output contains:
* an error (no 'fob' function)
* a note (pointing to the call macro)
* and then another note (suggesting foo instead of fob)
Problem:
The second note is printed without any highlighting/color (it should be bold
and the "note:" portion should be black (shows up as grey)).
--
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
More information about the llvm-bugs
mailing list