M
Martin Vorbrodt
simple program:
#include <iostream>
int main() {
std::cout << "bleee" << endl;
}
both VC++.NET 2003 and GCC (3.3 i think) tell me that endl is an undefined
identivier. is that correct, or should endl be visible through ADL?
thanks,
martin
#include <iostream>
int main() {
std::cout << "bleee" << endl;
}
both VC++.NET 2003 and GCC (3.3 i think) tell me that endl is an undefined
identivier. is that correct, or should endl be visible through ADL?
thanks,
martin