What pastebin that is capable of compiling & executing Standard C++11 code is most conformant to the new Standard? Do any use GCC 4.6.1?
I am composing an email for my workplace that illustrates some of the new features & functionality in C++11, and I'd like to include links to a pastebin that is capable of executing simple C++11 code.
I have been using ideone.com, but since ideone.com currently is using GCC 4.5.1 rather than 4.6.x the C++11 support is somewhat lacking.
For example, this code will not compile on ideone.com (link) because GCC 4.5.1 doesn't understand nullptr:
/*************************************
Simple demo of C++ nullptr
John Dibling
*************************************/
#include <cstdlib>
#include <cstddef>
#include <iostream>
using namespace std;
void foo(int)
{
cout << "int version called\n";
}
void foo(char*)
{
cout << "Pointer version called\n";
}
int main()
{
foo(0);
foo(nullptr);
}
constexprandnullptr. Admittedlynullptrcan be perfectly emulated so its not such a big deal, butconstexprchanges a lot. – deft_code Oct 12 '11 at 15:47