Slaine
Member
|
2 Build errors
Hi there, I've just downloading the sdk and linked it to my VC 2005 solution, now your wiki states that it is only compatible with 2008 and above, so I'm guessing these errors are related, however before I change my Visual Studio I would just like you to confirm that this is the problem, the arrors are on these lines of your engine:
Code:
struct Mesh: MeshLod // Mesh (set of Mesh Lod's)
{
MeshLod& lod (Byte i){return i ? _lod[i-1] : T;} // Here C2446
};
And here
Code:
struct WorldManager // World Manager
{
TEMPLATE friend struct Reference; // Here C2888
};
and here are the build errors:
Code:
error C2446: ':' : no conversion from 'EE::Mesh' to 'EE::MeshLod'
No constructor could take the source type, or constructor overload resolution was ambiguous
error C2888: 'EE::Reference' : symbol cannot be defined within namespace 'Game'
Many Thanks
|
|
11-02-2009 09:49 PM |
|
Esenthel
Administrator
|
RE: 2 Build errors
please update VS to 2008, under this version there are no errors
|
|
11-02-2009 10:43 PM |
|
Slaine
Member
|
RE: 2 Build errors
Many thanks, I had a feeling that was the problem.
|
|
11-02-2009 10:45 PM |
|