Browse Source

Tests/ObjC++: Use standard <iostream> header

Drop use of non-standard <iostream.h> header.
Brad King 13 years ago
parent
commit
b21cb9ff74
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Tests/ObjC++/objc++.mm

+ 2 - 1
Tests/ObjC++/objc++.mm

@@ -1,5 +1,6 @@
-#import <iostream.h>
 #import <Cocoa/Cocoa.h>
+#import <iostream>
+using namespace std;
 
 int main()
 {