Difference in Optimizing between Standard and Profesional

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

A release configuration in the standard edition of C++ .NET 2003 says "Maximize Speed (/02)". Does anyone know how that compares with the optimizing capabilities of the Profesional edition?
 
Greg said:
A release configuration in the standard edition of C++ .NET 2003 says
"Maximize Speed (/02)". Does anyone know how that compares with the
optimizing capabilities of the Profesional edition?

It does nothing at all. The IDE still shows all the optimizer options, but
the core compiler simply ignores them in the standard edition.

-cd
 
Back
Top