From c93f033d38e59473edd17fc9c4b7e1894fbdc453 Mon Sep 17 00:00:00 2001
From: Sergey Fedorov <vital.had@gmail.com>
Date: Wed, 4 Jan 2023 23:15:47 +0700
Subject: [PATCH 3/3] Fix missing _main on macOS

---
 tests/main.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tests/main.cpp b/tests/main.cpp
index cbcca02..b8686e2 100644
--- a/tests/main.cpp
+++ b/tests/main.cpp
@@ -1,2 +1,4 @@
 #define CATCH_CONFIG_MAIN
-#include <catch2/catch_all.hpp>
\ No newline at end of file
+#include <catch2/catch_all.hpp>
+
+int main() { return 0; }
-- 
2.39.0

