[llvm-commits] [poolalloc] r135467 - /poolalloc/trunk/runtime/DynamicTypeChecks/TypeRuntime.cpp

Will Dietz wdietz2 at illinois.edu
Mon Jul 18 21:27:18 PDT 2011


Author: wdietz2
Date: Mon Jul 18 23:27:18 2011
New Revision: 135467

URL: http://llvm.org/viewvc/llvm-project?rev=135467&view=rev
Log:
TypeRuntime.cpp: (minor) Fix iostream include, and reference to cerr

Modified:
    poolalloc/trunk/runtime/DynamicTypeChecks/TypeRuntime.cpp

Modified: poolalloc/trunk/runtime/DynamicTypeChecks/TypeRuntime.cpp
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/runtime/DynamicTypeChecks/TypeRuntime.cpp?rev=135467&r1=135466&r2=135467&view=diff
==============================================================================
--- poolalloc/trunk/runtime/DynamicTypeChecks/TypeRuntime.cpp (original)
+++ poolalloc/trunk/runtime/DynamicTypeChecks/TypeRuntime.cpp Mon Jul 18 23:27:18 2011
@@ -2,7 +2,7 @@
 #include <inttypes.h>
 #include <stdint.h>
 #include <stdio.h>
-#include <iostream.h>
+#include <iostream>
 #include <stdlib.h>
 #include <string.h>
 #include <netdb.h>
@@ -14,6 +14,8 @@
 
 #include <map>
 
+using std::cerr;
+
 #define DEBUG (0)
 
 /* Size of shadow memory.  We're hoping everything fits in 46bits. */





More information about the llvm-commits mailing list