From 22de6f2c56ea0bb551e87be43ed23a602a0207a4 Mon Sep 17 00:00:00 2001 From: Christopher Lackner Date: Wed, 21 Aug 2019 11:06:00 +0200 Subject: [PATCH] fix typos --- libsrc/core/utils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/core/utils.hpp b/libsrc/core/utils.hpp index e18a09f7..f6df8c9e 100644 --- a/libsrc/core/utils.hpp +++ b/libsrc/core/utils.hpp @@ -136,7 +136,7 @@ namespace ngcore static constexpr auto check(T2* t) -> typename T2::index_type { return *t; } // this function is needed for visual because it seems to not lazy evaluate template arguments... template - static constexpr auto check(T2* t) -> typename enable_if_t> {} + static constexpr auto check(T2* t) -> typename std::enable_if_t> {} static constexpr auto check(...) -> decltype(std::declval().Size()) { return decltype(std::declval().Size())(); } public: