Here is the MCVE:
#include <iostream>
#include <string>
using namespace std;
class Obj {
public:
Obj() { cout << "Obj()" << endl; }
~Obj() { cout << "~Obj()" << endl; }
void* operator new(size_t sz){
return ::operator new(sz);
}
void operator delete(void* p) {
::operator delete(p);
}
private:
friend class MyClass;
void* operator new(size_t, void*);
void operator delete(void*, size_t);
};
class MyClass {
public:
MyClass() : m_(new Obj) {
cout << "MyClass()" << endl;
}
~MyClass() {
cout << "~MyClass()" << endl;
delete m_;
}
private:
const Obj * m_;
};
int main()
{
cout << "Started" << endl;
MyClass o;
cout << "Finished" << endl;
return 0;
}
Building with MSVC 2015 (14.0):
error LNK2019: unresolved external symbol "private: static void __cdecl Obj::operator delete(void *,unsigned int)" (??3Obj@@CAXPAXI@Z) referenced in function __unwindfunclet$??0MyClass@@QAE@XZ$0
Building with MSVC 2013 (12.0): OK
Building with GCC 5.2: OK
Questions:
Why?
How to fix / work around?
P.S.
Original file in QtScript project.