summaryrefslogtreecommitdiff
path: root/deps/v8/src/inspector/string-16.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/inspector/string-16.h')
-rw-r--r--deps/v8/src/inspector/string-16.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/inspector/string-16.h b/deps/v8/src/inspector/string-16.h
index 360ec93864..0270f5117a 100644
--- a/deps/v8/src/inspector/string-16.h
+++ b/deps/v8/src/inspector/string-16.h
@@ -23,7 +23,7 @@ class String16 {
String16() {}
String16(const String16& other)
: m_impl(other.m_impl), hash_code(other.hash_code) {}
- String16(const String16&& other)
+ String16(String16&& other)
: m_impl(std::move(other.m_impl)), hash_code(other.hash_code) {}
String16(const UChar* characters, size_t size) : m_impl(characters, size) {}
String16(const UChar* characters) // NOLINT(runtime/explicit)