diff options
Diffstat (limited to 'src/object.cc')
-rw-r--r-- | src/object.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/object.cc b/src/object.cc index c08e1228c0..9e843279a4 100644 --- a/src/object.cc +++ b/src/object.cc @@ -1175,8 +1175,7 @@ bool String::Equals(const String* that) const { } } -bool String::Equals(const uint16_t* that_chars, int32_t that_offset, - int32_t that_length) const { +bool String::Equals(const uint16_t* that_chars, int32_t that_offset, int32_t that_length) const { if (this->GetLength() != that_length) { return false; } else { |