I wanted to switch my project settings from C++98 to C++11 but I am quite skeptical because of the additional compile time.
My (quite big) project is about 800 files and the project is generated with cmake. In XCode with C++98 setting it compiles in roughly 15min on a i7 4GHz machine (ssd hard-disk, 16GB ram).
When switching to C++11 it takes about 25min (On Windows with Visual Studio 2013 it is even worse - nearly double the time!)
I don't know, something has to be completely wrong in my project setup or with my files, because no one is talking about additional compile times with C++11.
And yes I am using forward declarations, pimpl idioms, even tried double include guards and I removed a lot of template stuff that I don't need anymore thanks to C++11 (so compiling should be even faster, but it's not - it's slower!)
Is compiling with C++11 way slower than with C++98? And why is no one talking about this?