"class" specifier
davidebeatrici opened this issue · 4 comments
davidebeatrici commented
davidebeatrici commented
Specifying class
for rage::fvector3
is actually causing a compiler error right now:
fwEntity.hpp:29:21: error: typedef 'fvector3' cannot be referenced with a class specifier
class rage::fvector3 m_right //0x0060
^
vector.hpp:12:28: note: declared here
typedef vector3<float> fvector3
^
Yimura commented
Do you remember you introduced this inconsistency through your PR?
I never checked if this was compatible or not, either make a PR fixing the issue or wait when I make time to fix the issue.
Yimura commented
Additionally the class specifier is automatically added by ReClass, I never bothered removing it.
davidebeatrici commented
Do you remember you introduced this inconsistency through your PR?
You're right, sorry about that. I got confused by the other class members and didn't realize rage::fvector3
was not a class.
Additionally the class specifier is automatically added by ReClass, I never bothered removing it.
I see, no problem.