From 17437fcc3be6f4e42bd92f99a9fed4eb9c8cc9ce Mon Sep 17 00:00:00 2001 From: Sam Morley <admin@inakleinbottle.com> Date: Sun, 17 Nov 2024 14:20:48 +0000 Subject: [PATCH] Add missing return statement in main.cpp The function was missing a return statement, which could lead to undefined behavior. This change ensures the function returns the intended result consistently. --- testing/src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/src/main.cpp b/testing/src/main.cpp index 3d7a72e9..cdb7e7ff 100644 --- a/testing/src/main.cpp +++ b/testing/src/main.cpp @@ -55,4 +55,5 @@ int main(int argc, char** argv) _CrtSetReportMode(_CRT_ERROR, error_mode); _CrtSetReportMode(_CRT_ASSERT, assert_mode); #endif + return result; } \ No newline at end of file