Displaying 2 results from an estimated 2 matches for "getvirtualtable".
2013 Sep 18
2
[LLVMdev] Error on completing ToyThread::execute() in ToyVM (vmkit project)
--
Hi all,
My code is:
TOY_VAR(Picture*, aPic);
aPic = Picture::doNew(-2, 1, -1, 1, 1900, 1200);
This code has the following compilation error:
../lib/ToyRoot.h:41:33: error: no member named 'getVirtualTable' in 'Toy::Picture'
res = gc::operator new(sz, o.getVirtualTable());
~ ^
Is it correct?
Best regards,
Mkh
2013 Sep 18
0
[LLVMdev] Error on completing ToyThread::execute() in ToyVM (vmkit project)
Hi,
The VMKit framework has been updated to be more generic.
The getVirtualTable method is not exposed anymore since this method suppose
that your object layout contains a virtual table.
Now you have new methods to get / set objects type which are virtual methods
inherited by the vmkit::VirtualMachine class.
Thus you can still keep your object identity as virtual tables, but n...