Suppressed meaningless function type qualifier warning in MSVC again

(this time in catch_tostring.h)
This commit is contained in:
Phil Nash 2017-09-07 11:25:10 +01:00
parent c5608f0202
commit 03d41ce5b9
1 changed files with 8 additions and 1 deletions

View File

@ -20,6 +20,10 @@
#include "catch_objc_arc.hpp"
#endif
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable:4180) // qualifier applied to function type has no meaning
#endif
// We need a dummy global operator<< so we can bring it into Catch namespace later
struct Catch_global_namespace_dummy;
@ -320,7 +324,10 @@ namespace Catch {
} // namespace Detail
#endif // __OBJC__
} // namespace Catch
#ifdef _MSC_VER
#pragma warning(pop)
#endif
#endif // TWOBLUECUBES_CATCH_TOSTRING_H_INCLUDED