diff options
author | Janne Koskinen <janne.p.koskinen@digia.com> | 2010-04-19 15:45:41 (GMT) |
---|---|---|
committer | Janne Koskinen <janne.p.koskinen@digia.com> | 2010-04-19 17:36:02 (GMT) |
commit | cc26a3ec5c6bfde206c7354f87bebd36b70e1205 (patch) | |
tree | 2d326e4ad079b32b405777ba58423c0b4009d4a4 /src/3rdparty/webkit/WebCore/platform | |
parent | 0d1739197015a651b88d710c9c961eb0f20278f9 (diff) | |
download | Qt-cc26a3ec5c6bfde206c7354f87bebd36b70e1205.zip Qt-cc26a3ec5c6bfde206c7354f87bebd36b70e1205.tar.gz Qt-cc26a3ec5c6bfde206c7354f87bebd36b70e1205.tar.bz2 |
Remove overloaded placement new operators
WINSCW and Sun OS build fix. placement new is already defined in NonCopyable, no need for overloading.
Reviewed-by: Simon Hausmann
Diffstat (limited to 'src/3rdparty/webkit/WebCore/platform')
-rw-r--r-- | src/3rdparty/webkit/WebCore/platform/text/StringImpl.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/3rdparty/webkit/WebCore/platform/text/StringImpl.h b/src/3rdparty/webkit/WebCore/platform/text/StringImpl.h index 81cd149..9a62cba 100644 --- a/src/3rdparty/webkit/WebCore/platform/text/StringImpl.h +++ b/src/3rdparty/webkit/WebCore/platform/text/StringImpl.h @@ -249,7 +249,6 @@ public: private: using Noncopyable::operator new; - void* operator new(size_t, void* inPlace) { ASSERT(inPlace); return inPlace; } static PassRefPtr<StringImpl> createStrippingNullCharactersSlowCase(const UChar*, unsigned length); |