Remove superfluous wrapper function C4AulStartTrace

epoxy
Günther Brammer 2016-01-24 23:41:12 +01:00
parent 9dadfba5af
commit 5708ba2e72
2 changed files with 1 additions and 7 deletions

View File

@ -906,11 +906,6 @@ C4AulBCC *C4AulExec::Call(C4AulFunc *pFunc, C4Value *pReturn, C4Value *pPars, C4
}
void C4AulStartTrace()
{
AulExec.StartTrace();
}
void C4AulExec::StartTrace()
{
if (iTraceStart < 0)

View File

@ -654,8 +654,7 @@ static bool FnFatalError(C4PropList * _this, C4String *pErrorMsg)
static bool FnStartCallTrace(C4PropList * _this)
{
extern void C4AulStartTrace();
C4AulStartTrace();
AulExec.StartTrace();
return true;
}