diff --git a/deps/ox/src/ox/std/stringliteral.hpp b/deps/ox/src/ox/std/stringliteral.hpp index adf41273..03e3678a 100644 --- a/deps/ox/src/ox/std/stringliteral.hpp +++ b/deps/ox/src/ox/std/stringliteral.hpp @@ -23,12 +23,12 @@ class StringLiteral: public detail::BaseStringView { constexpr StringLiteral(StringLiteral const &sv) noexcept = default; - consteval explicit StringLiteral(std::nullptr_t) noexcept {} + consteval StringLiteral(std::nullptr_t) noexcept {} - consteval explicit StringLiteral(char const *str, std::size_t const len) noexcept: BaseStringView{str, len} {} + consteval StringLiteral(char const *str, std::size_t const len) noexcept: BaseStringView{str, len} {} OX_ALLOW_UNSAFE_BUFFERS_BEGIN - consteval explicit StringLiteral(char const *str) noexcept: StringLiteral{str, ox::strlen(str)} {} + consteval StringLiteral(char const *str) noexcept: StringLiteral{str, ox::strlen(str)} {} OX_ALLOW_UNSAFE_BUFFERS_END constexpr StringLiteral &operator=(StringLiteral const &other) noexcept {