703 | | ||C4701|| local variable may be used without having been initialized||Best is to recode to avoid the message, but if you are '''very''' sure the message is misleading, suppress.|| # pragma warning(disable: 4701) // local variable may be used without having been initialized|| |
704 | | |
705 | | ||C4702|| unreachable code||Be very cautious about suppressing this, but use of macros may make this troublesome, so suppress with care, and always locally.|| #pragma warning(disable: 4702) // unreachable code|| |
| 703 | ||C4701|| local variable may be used without having been initialized||Best is to recode to avoid the message, but if you are '''very''' sure the message is misleading, suppress.||# pragma warning(disable: 4701) // local variable may be used without having been initialized|| |
| 704 | |
| 705 | ||C4702|| unreachable code||Be very cautious about suppressing this, but use of macros may make this troublesome, so suppress with care, and always locally.||#pragma warning(disable: 4702) // unreachable code|| |
709 | | ||C4224|| nonstandard extension used : formal parameter 'arg' was previously defined as a type.||This will bite users who try to compile with Microsoft extensions disabled. So is most undesirable, but may be a major nuisance to change the names in code.However fixing is the Right Thing, but meanwhile suppressing may be helpful.|| # pragma warning(disable: 4224) // formal parameter 'arg' was previously defined as a type.|| |
710 | | |
711 | | ||C4244 || // Conversion: possible loss of data.||Fix, for example changing type or using static_cast is best, suppress with much caution.|| # pragma warning(disable:4244) // Conversion: possible loss of data.|| |
| 709 | ||C4224|| nonstandard extension used : formal parameter 'arg' was previously defined as a type.||This will bite users who try to compile with Microsoft extensions disabled. So is most undesirable, but may be a major nuisance to change the names in code.However fixing is the Right Thing, but meanwhile suppressing may be helpful.||# pragma warning(disable: 4224) // formal parameter 'arg' was previously defined as a type.|| |
| 710 | |
| 711 | ||C4244 || // Conversion: possible loss of data.||Fix, for example changing type or using static_cast is best, suppress with much caution.||# pragma warning(disable:4244) // Conversion: possible loss of data.|| |