From 5b4d0113f8f674c11aebeb2e307ea24e020cc62d Mon Sep 17 00:00:00 2001 From: Kevin Lussier Date: Fri, 15 Jun 2018 00:43:26 -0700 Subject: [PATCH] Fix to build with UNICODE enabled --- include/cxxopts.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/cxxopts.hpp b/include/cxxopts.hpp index d4a3a99..7ab159c 100644 --- a/include/cxxopts.hpp +++ b/include/cxxopts.hpp @@ -998,7 +998,7 @@ namespace cxxopts std::string name; std::string description; std::vector options; - std::list notes; + std::list notes; }; class OptionValue @@ -1243,7 +1243,7 @@ namespace cxxopts ); void - add_group_note(const std::string& group, const std::string& note); + add_group_note(const std::string& group, const String& note); //parse positional arguments into the given option void @@ -1880,7 +1880,7 @@ void Options::add_group_note ( const std::string& group, - const std::string& note + const String& note ) { //add the help details