aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb115.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.robertl/eb115.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.robertl/eb115.C4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb115.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb115.C
index 30eab786f34..fc404d9ae32 100644
--- a/gcc/testsuite/g++.old-deja/g++.robertl/eb115.C
+++ b/gcc/testsuite/g++.old-deja/g++.robertl/eb115.C
@@ -1,9 +1,9 @@
// Special g++ Options: -O
-#include <iostream.h>
+#include <iostream>
#include <typeinfo>
int main() {
int *i1, *i2;
- cerr << (typeid(i1)==typeid(i2)) << endl;
+ std::cerr << (typeid(i1)==typeid(i2)) << std::endl;
}