diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2008-08-17 06:40:16 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2008-08-17 06:40:16 +0000 |
commit | b6c8a4098fd23c21d6cda33b09b99b5a0ac1e13f (patch) | |
tree | c9a9cc29018267c6c3376366c1b550e112de7a1b /include/llvm/Support/raw_ostream.h | |
parent | 9f17eb0b79717d479e462f0284442adbeae903ef (diff) | |
download | external_llvm-b6c8a4098fd23c21d6cda33b09b99b5a0ac1e13f.zip external_llvm-b6c8a4098fd23c21d6cda33b09b99b5a0ac1e13f.tar.gz external_llvm-b6c8a4098fd23c21d6cda33b09b99b5a0ac1e13f.tar.bz2 |
Fix build on GCC 4.3.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54870 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/raw_ostream.h')
-rw-r--r-- | include/llvm/Support/raw_ostream.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 34dd052..fc73bab 100644 --- a/include/llvm/Support/raw_ostream.h +++ b/include/llvm/Support/raw_ostream.h @@ -14,6 +14,8 @@ #ifndef LLVM_SUPPORT_RAW_OSTREAM_H #define LLVM_SUPPORT_RAW_OSTREAM_H +#include <cassert> +#include <cstring> #include <string> #include <iosfwd> |