Skip to content

Commit

Permalink
Fixed missing "No matching overload, candidates:\n" part of the "func…
Browse files Browse the repository at this point in the history
…tion overload not found" error.
  • Loading branch information
mrwonko authored and Oberon00 committed Jun 29, 2013
1 parent dbb1a25 commit f13671c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/function.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void invoke_context::format_error(
f->format_signature(L, function_name);
++count;
}
lua_concat(L, count * 2);
lua_concat(L, count * 2 + 1);
}
else
{
Expand Down

0 comments on commit f13671c

Please sign in to comment.