From ec2ed2fb324d92573418afcc17365c83373023ec Mon Sep 17 00:00:00 2001 From: Brad Bishop Date: Wed, 31 May 2017 21:10:43 -0400 Subject: Fix bool and string templates/rendering Fix a number of bugs related to rendering and instantiation of string and bool templates. Change-Id: Ic75842b4016f4d96bf5850f9c4ad778d82e075ed Signed-off-by: Brad Bishop --- src/format.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/format.hpp') diff --git a/src/format.hpp b/src/format.hpp index 9c8341c..f0b0c8e 100644 --- a/src/format.hpp +++ b/src/format.hpp @@ -15,6 +15,10 @@ namespace detail template struct GetFormatType { +}; +template <> struct GetFormatType +{ + static constexpr auto format = "%d"; }; template <> struct GetFormatType { -- cgit v1.2.1