From 3190c1da9fdfca865701f3b78c367836189afeb9 Mon Sep 17 00:00:00 2001 From: OGAWA KenIchi Date: Wed, 11 Dec 2019 17:47:16 +0900 Subject: [PATCH] fix: suppress warning on Intel C++ Compiler --- toml/traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toml/traits.hpp b/toml/traits.hpp index c0c5ee9..ec05f08 100644 --- a/toml/traits.hpp +++ b/toml/traits.hpp @@ -105,7 +105,7 @@ struct has_into_toml_method : decltype(has_into_toml_method_impl::check(nullptr)){}; #ifdef __INTEL_COMPILER -#undef decltype(...) +#undef decltype #endif // ---------------------------------------------------------------------------