When compiling my C ++. Net application, I get 104 warnings like:
Warning C4341 - 'XX': signed value is out of range for enum constant
Where XX may be
- Wchar
- Long
- Bit
- Binary
- GUID
- ...
I cannot remove these warnings, no matter what I do. When I double-click on them, it takes me to the part of my code that uses OdbcParameters - any, when I try to execute a test project with all the rest of my materials, but not OdbcParameters, it does not give warnings.
Any idea how I can get rid of these warnings? They make real warnings from the code that I really wrote to understand, and it just gives me a terrible feeling that my application has 104 warnings!
robintw
source share