C++ .NET How to surpress warning

  • Thread starter Thread starter J Swift
  • Start date Start date
J

J Swift

I need to surpress the following warning that taking place during
build/re-build

*warning C4018: '<' : signed/unsigned mismatch

I don't want to fix the cause because it's part of the way the program
works, but How do surpress the warning?
 
J Swift said:
I need to surpress the following warning that taking place during
build/re-build

*warning C4018: '<' : signed/unsigned mismatch

I don't want to fix the cause because it's part of the way the program
works, but How do surpress the warning?

pragma warning (disable: 4018)

/Fredrik
 
Back
Top