From 20a7d90abe07f6dccaafd6f5f65aad4bac68c1f8 Mon Sep 17 00:00:00 2001 From: Stephan van Veen Date: Mon, 13 May 2019 22:52:26 +0200 Subject: [PATCH] Don't accept std::string as container --- include/argparse.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/argparse.hpp b/include/argparse.hpp index 6e7ac31..644a7b8 100644 --- a/include/argparse.hpp +++ b/include/argparse.hpp @@ -58,6 +58,9 @@ struct is_container_helper {}; template struct is_container : std::false_type {}; +template<> +struct is_container : std::false_type {}; + template struct is_container