Commit 6963e73e247a97a1dd7c7ff0e85fdc6bbda22561

Fix compilation with WINSCW: work around using keyword issue
  
262262#if OS(SOLARIS) && COMPILER(SUNCC)
263263public: // Otherwise the compiler complains about operator new not being accessible.
264264#endif
265#if COMPILER(WINSCW)
266 void* operator new(size_t size) { return Noncopyable::operator new(size); }
267#else
265268 using Noncopyable::operator new;
269#endif
266270#if OS(SOLARIS) && COMPILER(SUNCC)
267271private:
268272#endif