This commit is contained in:
gazer 2015-12-12 23:26:11 +03:00
parent 2280b56171
commit b7be028039
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ static this() {
/// Using: checkgl!glFunction(funcParams);
template checkgl(alias func)
{
debug auto checkgl(alias func, string functionName=__FUNCTION__, int line=__LINE__, Args...)(Args args)
debug auto checkgl(string functionName=__FUNCTION__, int line=__LINE__, Args...)(Args args)
{
scope(success) checkError(func.stringof, functionName, line);
return func(args);