Is there any disadvantages or pitfalls with migration to c++11, if my current project on c++98? I mean that at some point I will start to use some advantages like auto
etc. from c++11 and will not do anything with the previous written code?
Seems only one disadvantage that its will be impossible to compile the projects on the servers with the old gcc? For example, I'm on FreeBSD 7, and there is no official new gcc for it.
UPDATE: @nurettin wrote on the comments that need to compile somewhere on c++11 and test it, but the application is very specifically and hard to test. it's background daemon without any output to console (something like web server with many thread) so it's very hard to debug....