mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 03:10:54 +01:00
GCC fix
This commit is contained in:
parent
4ffa98f4df
commit
f16d002db9
1 changed files with 2 additions and 2 deletions
|
@ -341,7 +341,7 @@ TEST_CASE_FIXTURE(Fixture, "equal_function")
|
||||||
INFO(diffRes.diffError->toString());
|
INFO(diffRes.diffError->toString());
|
||||||
CHECK(!diffRes.diffError.has_value());
|
CHECK(!diffRes.diffError.has_value());
|
||||||
}
|
}
|
||||||
catch (InternalCompilerError e)
|
catch (const InternalCompilerError& e)
|
||||||
{
|
{
|
||||||
INFO(("InternalCompilerError: " + e.message));
|
INFO(("InternalCompilerError: " + e.message));
|
||||||
CHECK(false);
|
CHECK(false);
|
||||||
|
@ -377,7 +377,7 @@ TEST_CASE_FIXTURE(Fixture, "equal_function_inferred_ret_length")
|
||||||
INFO(diffRes.diffError->toString());
|
INFO(diffRes.diffError->toString());
|
||||||
CHECK(!diffRes.diffError.has_value());
|
CHECK(!diffRes.diffError.has_value());
|
||||||
}
|
}
|
||||||
catch (InternalCompilerError e)
|
catch (const InternalCompilerError& e)
|
||||||
{
|
{
|
||||||
INFO(("InternalCompilerError: " + e.message));
|
INFO(("InternalCompilerError: " + e.message));
|
||||||
CHECK(false);
|
CHECK(false);
|
||||||
|
|
Loading…
Add table
Reference in a new issue