1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-19 16:47:14 +02:00

Minor code style and consistency adjustments.

This commit is contained in:
Sandu Liviu Catalin
2016-11-15 21:55:03 +02:00
parent 68c8921415
commit f8e57bf060
21 changed files with 47 additions and 27 deletions

View File

@ -119,7 +119,8 @@ void LongInt< Uint64 >::Random(Type m, Type n)
// ================================================================================================
void Register_LongInt(HSQUIRRELVM vm)
{
RootTable(vm).Bind(TypenameS::Str, Class< SLongInt >(vm, TypenameS::Str)
RootTable(vm).Bind(TypenameS::Str,
Class< SLongInt >(vm, TypenameS::Str)
// Constructors
.Ctor()
.Ctor< SLongInt::Type >()
@ -155,7 +156,8 @@ void Register_LongInt(HSQUIRRELVM vm)
.Overload< void (SLongInt::*)(SLongInt::Type, SLongInt::Type) >(_SC("Random"), &SLongInt::Random)
);
RootTable(vm).Bind(TypenameU::Str, Class< ULongInt >(vm, TypenameU::Str)
RootTable(vm).Bind(TypenameU::Str,
Class< ULongInt >(vm, TypenameU::Str)
// Constructors
.Ctor()
.Ctor< ULongInt::Type >()