diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-27 19:12:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-27 19:12:37 +0000 |
commit | ab77194e2a895bd2862f3a23bcd9d31efb553a54 (patch) | |
tree | 874177bf26f10f85384b23974d17ce02c4b2254a /include/Support/GraphWriter.h | |
parent | dc476b87d92a740f96597a4e73d4b07f79b9999d (diff) |
Old GCC's don't have an <ostream>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4293 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/Support/GraphWriter.h')
-rw-r--r-- | include/Support/GraphWriter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Support/GraphWriter.h b/include/Support/GraphWriter.h index d7c928bf06..02269994e6 100644 --- a/include/Support/GraphWriter.h +++ b/include/Support/GraphWriter.h @@ -18,7 +18,7 @@ #include "Support/DOTGraphTraits.h" #include "Support/GraphTraits.h" -#include <ostream> +#include <iostream> namespace DOT { // Private functions... inline std::string EscapeString(const std::string &Label) { |