From 43014c6619232166b1883e9944477dfdf65cc3cf Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Sat, 16 Mar 2019 16:24:10 +0900 Subject: [PATCH] fix: remove redefined default template argument --- toml/get.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/toml/get.hpp b/toml/get.hpp index ffc8747..6aad019 100644 --- a/toml/get.hpp +++ b/toml/get.hpp @@ -329,9 +329,7 @@ T get(const toml::value& v) } template> // not a toml::value - >::value, std::nullptr_t>::type, - std::size_t = sizeof(::toml::from) // and has from specialization - > + >::value, std::nullptr_t>::type, std::size_t> // and has from T get(const toml::value& v) { return ::toml::from::from_toml(v);