File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,9 @@ void each_arg(F f, Ts&&... xs)
9999 (void )std::initializer_list<int >{((void )f (std::forward<Ts>(xs)), 0 )...};
100100}
101101
102+ template <class F >
103+ void each_arg (F) {}
104+
102105std::vector<std::string> wrap (const std::string& text, unsigned int line_length = 72 )
103106{
104107 std::vector<std::string> output;
@@ -251,7 +254,7 @@ std::string type_to_help_impl(rank<0>)
251254template <class T >
252255auto type_to_help_impl (rank<1 >) -> typename std::enable_if<(is_container<T>() and not std::is_convertible<T, std::string>()), std::string>::type
253256{
254- if (is_container<T>()) return type_to_help_impl<value_of<T>>(rank<1 >{}) + " ..." ;
257+ return type_to_help_impl<value_of<T>>(rank<1 >{}) + " ..." ;
255258}
256259
257260template <class T >
You can’t perform that action at this time.
0 commit comments