Remove <iostream> include.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54131 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2008-07-27 23:18:30 +00:00
parent 7953f37810
commit 1a53eadbff

View File

@ -28,9 +28,9 @@
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Streams.h"
#include "llvm/Config/config.h"
#include <algorithm>
#include <iostream>
#include <set>
using namespace llvm;
@ -209,7 +209,7 @@ namespace {
}
void CppWriter::error(const std::string& msg) {
std::cerr << progname << ": " << msg << "\n";
cerr << progname << ": " << msg << "\n";
exit(2);
}