Remove implementation of the Decimal time. Not worth the troublem.

This commit is contained in:
Sandu Liviu Catalin
2016-06-05 04:28:45 +03:00
parent 3411f7c64b
commit 221e27e090
5 changed files with 0 additions and 707 deletions
-2
View File
@@ -6,7 +6,6 @@ namespace SqMod {
// ------------------------------------------------------------------------------------------------
extern void Register_LongInt(HSQUIRRELVM vm);
extern void Register_Decimal(HSQUIRRELVM vm);
extern void Register_Math(HSQUIRRELVM vm);
extern void Register_Random(HSQUIRRELVM vm);
@@ -14,7 +13,6 @@ extern void Register_Random(HSQUIRRELVM vm);
void Register_Numeric(HSQUIRRELVM vm)
{
Register_LongInt(vm);
Register_Decimal(vm);
Register_Math(vm);
Register_Random(vm);
}