Commit b9a1f4ece9ff177d4778340229035017903039ed
Prospective compilation fix for Solaris: placement new argument naming
Try to fix "../3rdparty/javascriptcore/JavaScriptCore/runtime/UStringImpl.h", line 273: Error: inPlace is not defined."
The theory is that the compiler is seeing FastAllocBase::operator new(), so the name needs to be the same.
| |   |
| 270 | 270 | #if OS(SOLARIS) && COMPILER(SUNCC) |
| 271 | 271 | private: |
| 272 | 272 | #endif |
| void* operator new(size_t, void* inPlace) { return inPlace; } |
| void* operator new(size_t, void* p) { return p; } |
| 274 | 274 | |
| 275 | 275 | ~UStringImpl(); |
| 276 | 276 | |