Is it possible to disable RVO (return value optimization) in Visual Studio 2010? Setting optimization flag to /Od (turns off all optimizations) doesn’t help. In g++ there exists flag -fno-elide-constructors which disables RVO.
Is it possible to disable RVO (return value optimization) in Visual Studio 2010? Setting
Share
You cannot. It is just that simple. RVO/NRVO is Standard, and your code should not depend on it not being present.