Suppress MSVC warning about meaningless function type qualifier in generic code

This commit is contained in:
Phil Nash 2017-09-07 11:15:07 +01:00
parent 4e5a67bc44
commit 8c39f9a725
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@
#pragma warning(disable:4389) // '==' : signed/unsigned mismatch
#pragma warning(disable:4018) // more "signed/unsigned mismatch"
#pragma warning(disable:4312) // Converting int to T* using reinterpret_cast (issue on x64 platform)
#pragma warning(disable:4180) // qualifier applied to function type has no meaning
#endif
namespace Catch {