We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 95ef81a + 0dca08f commit 85eb293Copy full SHA for 85eb293
lib/Basic/Located.cpp
@@ -20,5 +20,9 @@ void Located<T>::dump() const {
20
21
template<typename T>
22
void Located<T>::dump(raw_ostream &os) const {
23
- os << Loc << " " << Item;
+ // FIXME: The following does not compile on newer clangs because operator<<
24
+ // does not exist for SourceLoc. More so, the operator does not exist because
25
+ // one needs a SourceManager reference and buffer ID to convert any given
26
+ // SourceLoc into line and column information.
27
+ //os << Loc << " " << Item;
28
}
0 commit comments