The way exceptions are handled is borderline sadface in C++ on various platforms. I wish DLL boundaries and crap weren't so fragile.

This commit is contained in:
ThePhD 2017-03-16 15:53:51 -04:00
parent ed6ae23d2e
commit 144892c633

View File

@ -511,7 +511,7 @@ c = f()
check = {}
local i = 1
while c[i] do
check[i] = v
check[i] = c[i]
i = i + 1
end
)");