How do I change eclipse to use ISO C++ instead of ANSI?.
This is a clean install of eclipse. Currently when I create a new project eclipse defaults to ANSI.
Below is the eclipse generated remarks and code. Note that it uses Ansi.
####################################################
//============================================================================
// Name : basic.cpp
// Author : Danny
// Version :
// Copyright : For Free
// Description : Hello World in C++, Ansi-style
//============================================================================
#include <iostream>
using namespace std;
int main() {
cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!
return 0;
}
##########################################################################
I don't even think there's an option for that, I think the "Ansi-style" thing is just a reference to the preferred indentation and alignment style of the person that wrote the template.