Chromium Code Reviews| Index: third_party/WebKit/Source/wtf/text/WTFString.h |
| diff --git a/third_party/WebKit/Source/wtf/text/WTFString.h b/third_party/WebKit/Source/wtf/text/WTFString.h |
| index c2b55e4b312ec04c18ca580a3b9381824bf0a2ac..9e96791e46299bc5dc6237d4e4753147333298e9 100644 |
| --- a/third_party/WebKit/Source/wtf/text/WTFString.h |
| +++ b/third_party/WebKit/Source/wtf/text/WTFString.h |
| @@ -99,6 +99,8 @@ class WTF_EXPORT String { |
| String(StringImpl* impl) : m_impl(impl) {} |
| String(PassRefPtr<StringImpl> impl) : m_impl(impl) {} |
| + ~String(); |
|
Mikhail
2016/11/21 06:51:02
This will remove implicitly-declared move construc
dcheng
2016/11/22 01:30:08
Ah, good catch. I was wondering about the ASAN fai
|
| + |
| void swap(String& o) { m_impl.swap(o.m_impl); } |
| template <typename CharType> |