diff options
author | Duraid Madina <duraid@octopus.com.au> | 2005-12-26 05:08:55 +0000 |
---|---|---|
committer | Duraid Madina <duraid@octopus.com.au> | 2005-12-26 05:08:55 +0000 |
commit | 6fb9a84e79212f550981b6545aa435e7ca0cd794 (patch) | |
tree | ef9b6d51ccb8e42ed28222771b52f864947f103c | |
parent | a7df3c9cc37d4862e351ff326ec7baee2254c1c9 (diff) |
more standards-compliance stuff
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25014 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | utils/TableGen/Record.cpp | 2 | ||||
-rw-r--r-- | utils/TableGen/TableGen.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/utils/TableGen/Record.cpp b/utils/TableGen/Record.cpp index 13e4c985b6..2a70c27e50 100644 --- a/utils/TableGen/Record.cpp +++ b/utils/TableGen/Record.cpp @@ -12,6 +12,8 @@ #include "Record.h" #include "llvm/Support/DataTypes.h" +#include <ios> + using namespace llvm; //===----------------------------------------------------------------------===// diff --git a/utils/TableGen/TableGen.cpp b/utils/TableGen/TableGen.cpp index 5d946c20f9..3f8547d599 100644 --- a/utils/TableGen/TableGen.cpp +++ b/utils/TableGen/TableGen.cpp @@ -28,6 +28,7 @@ #include <algorithm> #include <cstdio> #include <fstream> +#include <ios> using namespace llvm; enum ActionType { |