forked from OSchip/llvm-project
For now, do not output the 'DisplayHint' in plist files.
llvm-svn: 65861
This commit is contained in:
parent
1f8140d3d4
commit
353e40211c
|
|
@ -126,11 +126,14 @@ static void ReportDiag(llvm::raw_ostream& o, const PathDiagnosticPiece& P,
|
||||||
Indent(o, indent) << "<string>" << P.getString() << "</string>\n";
|
Indent(o, indent) << "<string>" << P.getString() << "</string>\n";
|
||||||
|
|
||||||
// Output the hint.
|
// Output the hint.
|
||||||
|
#if 0
|
||||||
|
// Disable the display hint until we clear up its meaning.
|
||||||
Indent(o, indent) << "<key>displayhint</key>\n";
|
Indent(o, indent) << "<key>displayhint</key>\n";
|
||||||
Indent(o, indent) << "<string>"
|
Indent(o, indent) << "<string>"
|
||||||
<< (P.getDisplayHint() == PathDiagnosticPiece::Above
|
<< (P.getDisplayHint() == PathDiagnosticPiece::Above
|
||||||
? "above" : "below")
|
? "above" : "below")
|
||||||
<< "</string>\n";
|
<< "</string>\n";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
// Finish up.
|
// Finish up.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue