DigitaLBullet
DigitaLBullet

Reputation: 13

Does Dev-Cpp 5.11 support C++ 11?

I struggled to find a clear answer on the first Google page. I have troubles understanding the term "Language standard". I mean, the new standard should be implemented on a software level, right? It's not just a list of things discovered that users can now do, right? I use delegating constructors, get a warning:

[Warning] delegating constructors only available with -std=c++11 or -std=gnu++11

Though things seem to work the way I want them to. Is such warning critical? If so, how do I get rid of it?

Upvotes: 1

Views: 6920

Answers (1)

R2RT
R2RT

Reputation: 2146

Dev-Cpp is just IDE (frontend) for coder and behind it sits MinGW with GCC 4.9.2 as compiler*. So every time you click "Run" or "Build" it is GCC to do the dirty job. GCC by default uses C++03 standard and to use newer one you have to tell it explicitly via compiler flag -std=c++11. You can change it in Tools->Compiler Options->Settings->Code generation->Language standard (-std).

I am not sure why delegating constructors could work without C++11 (probably some GCC feature), but for sure you will not be able to use C++11 libraries without -std=c++11. It will also get rid of the warning.

(* Assuming you used default Dev-C++ installer.)

Upvotes: 3

Related Questions