diff --git a/include/date/date.h b/include/date/date.h index e97175b..4509fae 100644 --- a/include/date/date.h +++ b/include/date/date.h @@ -8071,6 +8071,15 @@ public: {} #if HAS_STRING_VIEW + parse_manip(const CharT* format, Parsable& tp, + std::basic_string* abbrev = nullptr, + std::chrono::minutes* offset = nullptr) + : format_(format) + , tp_(tp) + , abbrev_(abbrev) + , offset_(offset) + {} + parse_manip(std::basic_string_view format, Parsable& tp, std::basic_string* abbrev = nullptr, std::chrono::minutes* offset = nullptr)