1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-18 19:47:15 +01:00

Don't bind incomplete libraries.

This commit is contained in:
Sandu Liviu Catalin 2021-02-03 12:51:40 +02:00
parent 3f991cb3e5
commit a28d1799c5
3 changed files with 6 additions and 6 deletions

View File

@ -10,9 +10,9 @@ namespace SqMod {
// ================================================================================================ // ================================================================================================
void Register_POCO_JSON(HSQUIRRELVM vm, Table &) void Register_POCO_JSON(HSQUIRRELVM vm, Table &)
{ {
Table ns(vm); //Table ns(vm);
RootTable(vm).Bind(_SC("SqJSON"), ns); //RootTable(vm).Bind(_SC("SqJSON"), ns);
} }
} // Namespace:: SqMod } // Namespace:: SqMod

View File

@ -10,9 +10,9 @@ namespace SqMod {
// ================================================================================================ // ================================================================================================
void Register_POCO_Net(HSQUIRRELVM vm, Table &) void Register_POCO_Net(HSQUIRRELVM vm, Table &)
{ {
Table ns(vm); //Table ns(vm);
RootTable(vm).Bind(_SC("SqNet"), ns); //RootTable(vm).Bind(_SC("SqNet"), ns);
} }
} // Namespace:: SqMod } // Namespace:: SqMod

View File

@ -10,9 +10,9 @@ namespace SqMod {
// ================================================================================================ // ================================================================================================
void Register_POCO_XML(HSQUIRRELVM vm, Table &) void Register_POCO_XML(HSQUIRRELVM vm, Table &)
{ {
Table ns(vm); //Table ns(vm);
RootTable(vm).Bind(_SC("SqXML"), ns); //RootTable(vm).Bind(_SC("SqXML"), ns);
} }
} // Namespace:: SqMod } // Namespace:: SqMod