Don't attempt to overload the cmp metamethod in the chrono library types.

This commit is contained in:
Sandu Liviu Catalin
2016-11-15 21:48:23 +02:00
parent ff4c0b6143
commit 68c8921415
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ void Register_ChronoTimer(HSQUIRRELVM vm, Table & /*cns*/)
// Core Meta-methods
.SquirrelFunc(_SC("_typename"), &Typename::Fn)
.Func(_SC("_tostring"), &Timer::ToString)
.Func(_SC("_cmp"), &Timer::Cmp)
.Func(_SC("cmp"), &Timer::Cmp)
// Properties
.Prop(_SC("Elapsed"), &Timer::GetElapsedTime)
.Prop(_SC("ElapsedRaw"), &Timer::GetElapsedTimeRaw)