diff options
Diffstat (limited to 'include/rtl/string.hxx')
-rw-r--r-- | include/rtl/string.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rtl/string.hxx b/include/rtl/string.hxx index 3c540198f95f..e5e7f5716b74 100644 --- a/include/rtl/string.hxx +++ b/include/rtl/string.hxx @@ -329,7 +329,7 @@ public: #endif #if defined LIBO_INTERNAL_ONLY - OString(std::string_view sv) { + explicit OString(std::string_view sv) { if (sv.size() > sal_uInt32(std::numeric_limits<sal_Int32>::max())) { throw std::bad_alloc(); } |