mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-08-04 07:01:46 +02:00
Replace template specialisation used to execute a script function with variadic templates in order to reduce code size.
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -409,7 +409,7 @@ protected:
|
|||||||
// Attempt to forward the error to that callback
|
// Attempt to forward the error to that callback
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
m_OnFail.Execute< Int32, CSStr, T >(type, msg, data);
|
m_OnFail.Execute(type, msg, data);
|
||||||
}
|
}
|
||||||
catch (const Sqrat::Exception & e)
|
catch (const Sqrat::Exception & e)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user