Fix CI + new Doctest (#3985)

This commit is contained in:
Niels Lohmann
2023-05-21 17:23:18 +02:00
committed by GitHub
parent 6af826d0bd
commit a0c1318830
11 changed files with 1905 additions and 1358 deletions

View File

@@ -34,17 +34,17 @@ struct alt_string_iter
impl.append(first, last);
}
std::string::const_iterator begin() const
std::string::const_iterator begin() const noexcept
{
return impl.begin();
}
std::string::const_iterator end() const
std::string::const_iterator end() const noexcept
{
return impl.end();
}
std::size_t size() const
std::size_t size() const noexcept
{
return impl.size();
}