From 378cc1a67065850df2959cb3257ba5efd82ab303 Mon Sep 17 00:00:00 2001 From: Jesse Alas Date: Fri, 9 Aug 2019 13:27:24 -0700 Subject: [PATCH] Rename template parameter names to avoid name conflict on Solaris. Closes #1722 --- include/internal/catch_tostring.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/internal/catch_tostring.h b/include/internal/catch_tostring.h index b9f9cd9c..8668b1eb 100644 --- a/include/internal/catch_tostring.h +++ b/include/internal/catch_tostring.h @@ -44,9 +44,9 @@ namespace Catch { template class IsStreamInsertable { - template + template static auto test(int) - -> decltype(std::declval() << std::declval(), std::true_type()); + -> decltype(std::declval() << std::declval(), std::true_type()); template static auto test(...)->std::false_type;