chore(util): permit arbitrary return values in unimplemented macro

This commit is contained in:
fallenoak 2023-02-21 08:00:56 -06:00 committed by GitHub
parent 0b30174088
commit a3a12c23a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 519 additions and 524 deletions

View file

@ -4,5 +4,5 @@
#include <cstdint>
int32_t Script_GetAccountExpansionLevel(lua_State* L) {
WHOA_UNIMPLEMENTED();
WHOA_UNIMPLEMENTED(0);
}