[llvm-commits] [llvm] r54870 - /llvm/trunk/include/llvm/Support/raw_ostream.h
Nick Lewycky
nicholas at mxc.ca
Sat Aug 16 23:40:17 PDT 2008
Author: nicholas
Date: Sun Aug 17 01:40:16 2008
New Revision: 54870
URL: http://llvm.org/viewvc/llvm-project?rev=54870&view=rev
Log:
Fix build on GCC 4.3.
Modified:
llvm/trunk/include/llvm/Support/raw_ostream.h
Modified: llvm/trunk/include/llvm/Support/raw_ostream.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/raw_ostream.h?rev=54870&r1=54869&r2=54870&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/raw_ostream.h (original)
+++ llvm/trunk/include/llvm/Support/raw_ostream.h Sun Aug 17 01:40:16 2008
@@ -14,6 +14,8 @@
#ifndef LLVM_SUPPORT_RAW_OSTREAM_H
#define LLVM_SUPPORT_RAW_OSTREAM_H
+#include <cassert>
+#include <cstring>
#include <string>
#include <iosfwd>
More information about the llvm-commits
mailing list