Index: Source/wtf/text/WTFString.h |
diff --git a/Source/wtf/text/WTFString.h b/Source/wtf/text/WTFString.h |
index a73e9bfbb66d786d1dd7a27701c7c21890ce703c..cd81ad4338d636b70c6d2bc000013472871da282 100644 |
--- a/Source/wtf/text/WTFString.h |
+++ b/Source/wtf/text/WTFString.h |
@@ -132,9 +132,6 @@ public: |
String& operator=(String&& other) { m_impl = other.m_impl.release(); return *this; } |
#endif |
- // Inline the destructor. |
- ALWAYS_INLINE ~String() { } |
- |
void swap(String& o) { m_impl.swap(o.m_impl); } |
template<typename CharType> |