mirror of
https://github.com/KeqingMoe/argparse.git
synced 2025-07-04 15:14:39 +00:00
Remove is_representable_v trait
This trait is unused and removing it does not cause any tests to fail. Signed-off-by: Sean Robinson <sean.robinson@scottsdalecc.edu>
This commit is contained in:
parent
cb2777db6e
commit
c50346c1df
@ -79,10 +79,6 @@ struct is_streamable<T, std::void_t<decltype(std::declval<std::ostream &>()
|
||||
template <typename T>
|
||||
static constexpr bool is_streamable_v = is_streamable<T>::value;
|
||||
|
||||
template <typename T>
|
||||
static constexpr bool is_representable_v =
|
||||
is_streamable_v<T> || is_container_v<T>;
|
||||
|
||||
constexpr std::size_t repr_max_container_size = 5;
|
||||
|
||||
template <typename T> std::string repr(T const &val) {
|
||||
|
Loading…
Reference in New Issue
Block a user