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";
|
||||
|
||||
// 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) << "<string>"
|
||||
<< (P.getDisplayHint() == PathDiagnosticPiece::Above
|
||||
? "above" : "below")
|
||||
<< "</string>\n";
|
||||
#endif
|
||||
|
||||
|
||||
// Finish up.
|
||||
|
|
|
|||
Loading…
Reference in New Issue