aboutsummaryrefslogtreecommitdiffstats
path: root/utils/TableGen/ClangDiagnosticsEmitter.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-03 00:10:29 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-03 00:10:29 +0000
commit1a55180238dbcf11113f610aea010447e51f595b (patch)
treeb9769936054af70053271573496a228e18629946 /utils/TableGen/ClangDiagnosticsEmitter.h
parent78236f8c8a0e6bd966afd7e461599336956f7772 (diff)
downloadexternal_llvm-1a55180238dbcf11113f610aea010447e51f595b.zip
external_llvm-1a55180238dbcf11113f610aea010447e51f595b.tar.gz
external_llvm-1a55180238dbcf11113f610aea010447e51f595b.tar.bz2
Replace std::iostreams with raw_ostream in TableGen.
- Sorry, I can't help myself. - No intended functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74742 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/ClangDiagnosticsEmitter.h')
-rw-r--r--utils/TableGen/ClangDiagnosticsEmitter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/ClangDiagnosticsEmitter.h b/utils/TableGen/ClangDiagnosticsEmitter.h
index 58ea524..edd062a 100644
--- a/utils/TableGen/ClangDiagnosticsEmitter.h
+++ b/utils/TableGen/ClangDiagnosticsEmitter.h
@@ -29,7 +29,7 @@ public:
: Records(R), Component(component) {}
// run - Output the .def file contents
- void run(std::ostream &OS);
+ void run(raw_ostream &OS);
};
class ClangDiagGroupsEmitter : public TableGenBackend {
@@ -37,7 +37,7 @@ class ClangDiagGroupsEmitter : public TableGenBackend {
public:
explicit ClangDiagGroupsEmitter(RecordKeeper &R) : Records(R) {}
- void run(std::ostream &OS);
+ void run(raw_ostream &OS);
};