Hi,
tried to compile under Win 7 & VS 2010. here some issues:
1.)
in vmmlib_config.hpp I had to correct the line to:
defined _WIN32
define VMMLIB_ALIGN( var ) __declspec (align (16)) var
2.)
Compiler throw the error in quaternion.hpp, that the vector is not accessible, because it is using varaibles from base class with "super". Had to change the declaration to:
class quaternion : public vector< 4, T >
instead of class quaternion : private vector< 4, T >
so that it worked.
lg matthias
Hi,
tried to compile under Win 7 & VS 2010. here some issues:
1.)
in vmmlib_config.hpp I had to correct the line to:
defined _WIN32
define VMMLIB_ALIGN( var ) __declspec (align (16)) var
2.)
Compiler throw the error in quaternion.hpp, that the vector is not accessible, because it is using varaibles from base class with "super". Had to change the declaration to:
class quaternion : public vector< 4, T >
instead of class quaternion : private vector< 4, T >
so that it worked.
lg matthias