mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-03 11:45:34 +00:00
The MSVC linker is really pedantic with this.
Functions compiled as taking a class can't be linked with functions giving a struct, because of the name mangling I'm guessing... unresolved external symbol "protected: void __thiscall MWWorld::LiveCellRefBase::loadImp(class ESM::ObjectState const &)" (?loadImp@LiveCellRefBase@MWWorld@@IAEXABVObjectState@ESM@@@Z)
This commit is contained in:
parent
3937cfcd8b
commit
d3357cc279
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
|||
|
||||
namespace ESM
|
||||
{
|
||||
class ObjectState;
|
||||
struct ObjectState;
|
||||
}
|
||||
|
||||
namespace MWWorld
|
||||
|
|
Loading…
Reference in a new issue