1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-20 19:57:12 +01:00

Remove leftover commented code from Vector3 registration code.

This commit is contained in:
Sandu Liviu Catalin 2016-08-24 23:16:37 +03:00
parent 86fcceb6ce
commit f88f8b9942

View File

@ -726,7 +726,6 @@ void Register_Vector3(HSQUIRRELVM vm)
.SquirrelFunc(_SC("_typename"), &Vector3::Typename)
// We cannot set _cmp for c++ classes so we use this instead
.SquirrelFunc(_SC("cmp"), &SqDynArgFwd< SqDynArgCmpFn< Vector3 >, SQFloat, SQInteger, bool, std::nullptr_t, Vector3 >)
//.Func(_SC("_cmp"), &Vector3::Cmp)
// Meta-methods
.SquirrelFunc(_SC("_add"), &SqDynArgFwd< SqDynArgAddFn< Vector3 >, SQFloat, SQInteger, bool, std::nullptr_t, Vector3 >)
.SquirrelFunc(_SC("_sub"), &SqDynArgFwd< SqDynArgSubFn< Vector3 >, SQFloat, SQInteger, bool, std::nullptr_t, Vector3 >)