1 | | It's an issue in the STL, not the C++ runtime library. The runtime provides 'operator delete(void*)', and the STL provides 'operator delete(void*, unsigned long)' |
| 1 | I don't think it's an issue with the C++ runtime library because the same runtime is used in both the 3.6 and 3.7 cases, and in the 3.6 case, a symbol dump shows that it is implementing the `operator delete(void*, unsigned long)` operator locally (`__ZdlPvm`). |
| 2 | |
| 3 | I'm going to bump to current svn trunk and try to reproduce. If it's still an issue, I'll file an upstream bug to track the fix. |