From 8c39f9a725b527c8b5d04317dea92a58ae6d9c25 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Thu, 7 Sep 2017 11:15:07 +0100 Subject: [PATCH] Suppress MSVC warning about meaningless function type qualifier in generic code --- include/internal/catch_decomposer.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/internal/catch_decomposer.h b/include/internal/catch_decomposer.h index 48f87f60..5d4bb0d1 100644 --- a/include/internal/catch_decomposer.h +++ b/include/internal/catch_decomposer.h @@ -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 {