1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Replace template specialisation used to execute a script function with variadic templates in order to reduce code size.

This commit is contained in:
Sandu Liviu Catalin 2018-07-29 14:36:52 +03:00
parent 2dcd9ee986
commit 7ed5183d45
2 changed files with 25 additions and 2315 deletions

File diff suppressed because it is too large Load Diff

View File

@ -409,7 +409,7 @@ protected:
// Attempt to forward the error to that callback
try
{
m_OnFail.Execute< Int32, CSStr, T >(type, msg, data);
m_OnFail.Execute(type, msg, data);
}
catch (const Sqrat::Exception & e)
{