From f7683b3725ecafbfe2f880d16b50cb3e39da5ab1 Mon Sep 17 00:00:00 2001 From: Baptiste Wicht Date: Thu, 5 Apr 2018 14:06:25 +0200 Subject: [PATCH] Cleanup --- tstl/include/type_traits.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tstl/include/type_traits.hpp b/tstl/include/type_traits.hpp index 9b7044a3..1c1cf14e 100644 --- a/tstl/include/type_traits.hpp +++ b/tstl/include/type_traits.hpp @@ -435,10 +435,10 @@ struct is_convertible_impl { template struct is_convertible_impl { private: - template - static void test_aux(_To1); + template + static void test_aux(To1); - template (std::declval<_From1>()))> + template (std::declval()))> static true_type test(int); template