We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a753d9 commit 6f30c17Copy full SHA for 6f30c17
arccore/src/base/arccore/base/StringView.h
@@ -53,7 +53,7 @@ class ARCCORE_BASE_EXPORT StringView
53
public:
54
55
//! Crée une vue sur une chaîne vide
56
- constexpr StringView() ARCCORE_NOEXCEPT {}
+ StringView() = default;
57
//! Créé une vue à partir de \a str codé en UTF-8. \a str peut être nul.
58
StringView(const char* str) ARCCORE_NOEXCEPT
59
: StringView(str ? std::string_view(str) : std::string_view()){}
0 commit comments