c++ - Will I get a performance boost when compiling with a C++14 compiler instead of C++11? -
i know can performance boost when compiling c++11 compiler instead of c++03 compiler (see question).
but can expect performance boost when going c++11 compiler c++14 compiler?
if so, can show me code sample faster when compiled c++14 instead of c++11.
there core language change in c++14 allows implementation merge memory allocations, see n3664. if compiler/optimizer takes advantage of allowance, may see performance improvement.
Comments
Post a Comment