Closed red-angry-bird closed 6 years ago
No, it does not. Only int main(int, char**)
and int main()
(and various spellings thereof) are standard conforming.
Also the current version of Args::Args
has two overloads, one for init list of std::string
s and Args(int, char const* const*)
. Unlike char const**
, char const* const*
can accept arguments of type char**
.
Thanks for your fast and particularized response
Hey there,
the second argument of clara::Args should be const because main(int, const char*[]) is conform to the standard.