Reply to thread

It it tough to comment on particular scenario. But, it could happen because of difference in optimization levels. When optimization is not enabled, compiler keeps all the temporary variables you created for legibility. At higher optimization levels, these variables may get optimized out.

Debug mode usually uses optimization level -O0. Release can be any thing depending on the compiler and IDE. Take your release config and add -g option to it to do an apples-to-apples comparison.


If you changed any interface section of your classes, always do clean compile.


Back
Top Bottom