Board index » cppbuilder » Cannot compile with #include <iostream>
John
![]() CBuilder Developer |
Cannot compile with #include <iostream>2004-01-26 02:31:46 AM cppbuilder55 I am working on a simple command line project, but every time I include iostream, I get a long list of errors. I am using Bcc5.5, on a Windows98 machine. I edit and compile with Textpad 4.5. I used this setup with WinXP and had no difficulty, but my current machine is 98SE. Briefly, here is a test .cpp file ******* #include <iostream> using namespace std; int main() { cout<<"this is a test"; return 0; } ******* I have tried this with and without "using namespace std", as <iostream>, <iostream.h>and "iostream.h". I get the same errors. Here are the first few: Warning W8026 c:\John\class\csc\csc230\include130\exception 70: Functions with exception specifications are not expanded inline Warning W8026 c:\John\class\csc\csc230\include130\exception 70: Functions with exception specifications are not expanded inline Warning W8026 c:\John\class\csc\csc230\include130\new 20: Functions with exception specifications are not expanded inline Any help would be appreciated. PS I am writing a class assignment, just full disclosure. |