From c50346c1dff00af89db9a9a19533a3a34caaa190 Mon Sep 17 00:00:00 2001 From: Sean Robinson Date: Mon, 7 Feb 2022 14:33:24 -0700 Subject: [PATCH] Remove is_representable_v trait This trait is unused and removing it does not cause any tests to fail. Signed-off-by: Sean Robinson --- include/argparse/argparse.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/argparse/argparse.hpp b/include/argparse/argparse.hpp index af20f0b..e64beeb 100644 --- a/include/argparse/argparse.hpp +++ b/include/argparse/argparse.hpp @@ -79,10 +79,6 @@ struct is_streamable() template static constexpr bool is_streamable_v = is_streamable::value; -template -static constexpr bool is_representable_v = - is_streamable_v || is_container_v; - constexpr std::size_t repr_max_container_size = 5; template std::string repr(T const &val) {