1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-08-05 23:51:48 +02:00

Minor aditions to the system path library.

Fixed small const correctness in remaining typename functions.
Added a flag to block certain format warnings on x64 builds.
This commit is contained in:
Sandu Liviu Catalin
2016-05-23 03:34:35 +03:00
parent 49a9983799
commit fdd06e8c2e
8 changed files with 68 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ namespace SqMod {
// ------------------------------------------------------------------------------------------------
SQInteger AES256::Typename(HSQUIRRELVM vm)
{
static SQChar name[] = _SC("SqAES256");
static const SQChar name[] = _SC("SqAES256");
sq_pushstring(vm, name, sizeof(name));
return 1;
}