Make result ptr in IForward::Execute default to NULL (which is allowed).

This commit is contained in:
Nicholas Hastings 2015-02-17 06:43:07 -08:00
parent eb9f496cd8
commit 67e74581cc

View File

@ -171,7 +171,7 @@ namespace SourceMod
* @param filter Do not use. * @param filter Do not use.
* @return Error code, if any. * @return Error code, if any.
*/ */
virtual int Execute(cell_t *result, IForwardFilter *filter=NULL) =0; virtual int Execute(cell_t *result=NULL, IForwardFilter *filter=NULL) =0;
/** /**
* @brief Pushes an array of cells onto the current call. Different rules than ICallable. * @brief Pushes an array of cells onto the current call. Different rules than ICallable.