From 2b464e701ee13d2c88edfa32a1e92abd950e4586 Mon Sep 17 00:00:00 2001 From: Simon Brand Date: Fri, 26 Apr 2019 21:23:45 +0100 Subject: [PATCH] Update type_traits.hpp --- include/tl/type_traits.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/tl/type_traits.hpp b/include/tl/type_traits.hpp index c32258a..403fafa 100644 --- a/include/tl/type_traits.hpp +++ b/include/tl/type_traits.hpp @@ -23,8 +23,8 @@ namespace tl { template using bool_constant = std::integral_constant; - template - using index_constant = std::integral_constant; + template + using index_constant = std::integral_constant; template struct conjunction : std::true_type { }; template struct conjunction : B { };