mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
AK+LibRegex: Disable construction of views from temporary Strings
This commit is contained in:
parent
e606ff3751
commit
e8f6840471
Notes:
sideshowbarker
2024-07-18 04:45:47 +09:00
Author: https://github.com/IdanHo Commit: https://github.com/SerenityOS/serenity/commit/e8f6840471e Pull-request: https://github.com/SerenityOS/serenity/pull/9812
3 changed files with 6 additions and 0 deletions
|
@ -48,6 +48,8 @@ public:
|
||||||
StringView(const String&);
|
StringView(const String&);
|
||||||
StringView(const FlyString&);
|
StringView(const FlyString&);
|
||||||
|
|
||||||
|
explicit StringView(String&&) = delete;
|
||||||
|
|
||||||
[[nodiscard]] constexpr bool is_null() const { return !m_characters; }
|
[[nodiscard]] constexpr bool is_null() const { return !m_characters; }
|
||||||
[[nodiscard]] constexpr bool is_empty() const { return m_length == 0; }
|
[[nodiscard]] constexpr bool is_empty() const { return m_length == 0; }
|
||||||
|
|
||||||
|
|
|
@ -58,6 +58,8 @@ public:
|
||||||
explicit Utf8View(const char*);
|
explicit Utf8View(const char*);
|
||||||
~Utf8View() = default;
|
~Utf8View() = default;
|
||||||
|
|
||||||
|
explicit Utf8View(String&&) = delete;
|
||||||
|
|
||||||
const StringView& as_string() const { return m_string; }
|
const StringView& as_string() const { return m_string; }
|
||||||
|
|
||||||
Utf8CodePointIterator begin() const;
|
Utf8CodePointIterator begin() const;
|
||||||
|
|
|
@ -54,6 +54,8 @@ public:
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
explicit RegexStringView(String&&) = delete;
|
||||||
|
|
||||||
StringView const& string_view() const
|
StringView const& string_view() const
|
||||||
{
|
{
|
||||||
return m_view.get<StringView>();
|
return m_view.get<StringView>();
|
||||||
|
|
Loading…
Reference in a new issue