Index: Source/wtf/text/AtomicString.h |
diff --git a/Source/wtf/text/AtomicString.h b/Source/wtf/text/AtomicString.h |
index ca43859c088c99c7e55db949fc2ecae0cb8ca7b2..f8f1f63d2852495e69ce020dd1b3e2945a70d0f9 100644 |
--- a/Source/wtf/text/AtomicString.h |
+++ b/Source/wtf/text/AtomicString.h |
@@ -50,7 +50,7 @@ public: |
// Constructing an AtomicString from a String / StringImpl can be expensive if |
// the StringImpl is not already atomic. |
- explicit AtomicString(StringImpl* imp) : m_string(add(imp)) { } |
+ explicit AtomicString(StringImpl* impl) : m_string(add(impl)) { } |
explicit AtomicString(const String& s) : m_string(add(s.impl())) { } |
AtomicString(StringImpl* baseString, unsigned start, unsigned length) : m_string(add(baseString, start, length)) { } |