diff options
Diffstat (limited to 'Source/JavaScriptCore/runtime/UString.h')
-rw-r--r-- | Source/JavaScriptCore/runtime/UString.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/JavaScriptCore/runtime/UString.h b/Source/JavaScriptCore/runtime/UString.h index 668eb0489..7677161a3 100644 --- a/Source/JavaScriptCore/runtime/UString.h +++ b/Source/JavaScriptCore/runtime/UString.h @@ -121,8 +121,12 @@ public: // Find a single character or string, also with match function & latin1 forms. size_t find(UChar c, unsigned start = 0) const { return m_impl ? m_impl->find(c, start) : notFound; } - size_t find(const UString& str, unsigned start = 0) const + + size_t find(const UString& str) const + { return m_impl ? m_impl->find(str.impl()) : notFound; } + size_t find(const UString& str, unsigned start) const { return m_impl ? m_impl->find(str.impl(), start) : notFound; } + size_t find(const LChar* str, unsigned start = 0) const { return m_impl ? m_impl->find(str, start) : notFound; } |