commit | 6ad90765541c688d955437548bf6cc3799f6c7af | [log] [tgz] |
---|---|---|
author | Misha Brukman <brukman+llvm@gmail.com> | Wed Aug 13 22:27:15 2003 +0000 |
committer | Misha Brukman <brukman+llvm@gmail.com> | Wed Aug 13 22:27:15 2003 +0000 |
tree | 7a320bd84575e466aa948d6b6741d81cfa39d82d | |
parent | 250d91b4bfe4b3b5cb87cebb6d9cef5fcc7e5b2a [diff] [blame] |
Using std::string requires `#include <string>', says gcc-2.95.3. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7833 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/TableGen/CodeGenTarget.h b/utils/TableGen/CodeGenTarget.h index 595542a..00ca3fc 100644 --- a/utils/TableGen/CodeGenTarget.h +++ b/utils/TableGen/CodeGenTarget.h
@@ -12,6 +12,7 @@ #include "llvm/CodeGen/ValueTypes.h" #include <iosfwd> +#include <string> #include <vector> class Record; class RecordKeeper;