Index: Source/wtf/text/AtomicString.h |
diff --git a/Source/wtf/text/AtomicString.h b/Source/wtf/text/AtomicString.h |
index f8f1f63d2852495e69ce020dd1b3e2945a70d0f9..d768bc04c5349d910104eb5b987ae418a492d52e 100644 |
--- a/Source/wtf/text/AtomicString.h |
+++ b/Source/wtf/text/AtomicString.h |
@@ -96,7 +96,7 @@ public: |
const UChar* characters16() const { return m_string.characters16(); } |
unsigned length() const { return m_string.length(); } |
- UChar operator[](unsigned int i) const { return m_string[i]; } |
+ UChar operator[](unsigned i) const { return m_string[i]; } |
bool contains(UChar c) const { return m_string.contains(c); } |
bool contains(const LChar* s, bool caseSensitive = true) const |