diff --git a/include/fmt/core.h b/include/fmt/core.h index 898d447d..6c93cfa3 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -262,7 +262,7 @@ template class basic_string_view { the size with ``std::char_traits::length``. \endrst */ - basic_string_view(const Char* s) + basic_string_view(const Char* s) FMT_NOEXCEPT : data_(s), size_(std::char_traits::length(s)) {} /** Constructs a string reference from a ``std::basic_string`` object. */