From b3494a29d6c1863002dc8bd3ee910f2a6af9410f Mon Sep 17 00:00:00 2001 From: Stephan van Veen Date: Mon, 13 May 2019 22:53:47 +0200 Subject: [PATCH] Remove is_specialization --- include/argparse.hpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/argparse.hpp b/include/argparse.hpp index 644a7b8..1b1e8df 100644 --- a/include/argparse.hpp +++ b/include/argparse.hpp @@ -45,12 +45,6 @@ SOFTWARE. namespace argparse { namespace { // anonymous namespace for helper methods - not visible outside this header file -// Some utility structs to check template specialization -template class Ref> -struct is_specialization : std::false_type {}; - -template class Ref, typename... Args> -struct is_specialization, Ref> : std::true_type {}; template struct is_container_helper {};