mirror of
https://github.com/ldmud/ldmud
synced 2026-08-12 14:26:05 -04:00
When checking the number of arguments for calls to Python efuns, the existence of ellipsis in the argument list were ignored, resulting in false compile errors.
7 lines
159 B
C
7 lines
159 B
C
int check()
|
|
{
|
|
// This should compile and execute without error
|
|
<int|string>* args = ({"A", "", 1, 2});
|
|
|
|
return python_typecheck(args...) == "A";
|
|
}
|