Style fixes.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-09-24 21:02:22 +02:00
parent 2e93cd65c5
commit 74d7e23056
6 changed files with 16 additions and 11 deletions

View File

@@ -62,7 +62,8 @@ namespace ArbUt {
/// @brief Copy operator
/// @param other Other StringView
StringView(const StringView& other) noexcept : BasicStringView(other._length, other._hash), _str(other._str) {}
/// @brief Special constructor of stringview, specifically designed for use of conversion from StringViewLiteral to StringView.
/// @brief Special constructor of stringview, specifically designed for use of conversion from StringViewLiteral
/// to StringView.
/// @param other Other StringView
/// @param c A null-terminated C string.
/// @param length The length of the C string.