diff --git a/tests/test_color_constexpr.cc b/tests/test_color_constexpr.cc index a672956..0d0a028 100644 --- a/tests/test_color_constexpr.cc +++ b/tests/test_color_constexpr.cc @@ -24,4 +24,6 @@ int main(int, char*[]) { constexpr int a = c1.GetAlpha(); static_assert(r == 0 && g == 0 && b == 0 && a == 0, ""); + + return 0; } diff --git a/tests/test_pointrect_constexpr.cc b/tests/test_pointrect_constexpr.cc index ef2a6a4..179678a 100644 --- a/tests/test_pointrect_constexpr.cc +++ b/tests/test_pointrect_constexpr.cc @@ -77,4 +77,6 @@ int main(int, char*[]) { static_assert(b3 && b4 && b5 && b6, ""); } + + return 0; }