In MSVC, there are four options for code optimization:
- No Optimization
- Minimize Size
- Maximize Speed
- Full Optimization
The first three are self-explanatory, but I am unsure about Full Optimization
. Does this try to find a balance between size and speed, or does it do better optimization than the other two options? Please clarify what it means.