From e70e8a62b28e2c79cc7229f4b3daa464c61b5814 Mon Sep 17 00:00:00 2001
From: Sergey Fedorov <vital.had@gmail.com>
Date: Thu, 5 Jan 2023 00:12:48 +0700
Subject: [PATCH 2/3] Fix for missing _main on macOS

---
 tests/main.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/main.cpp b/tests/main.cpp
index 13928b9..2bd3007 100644
--- a/tests/main.cpp
+++ b/tests/main.cpp
@@ -1,3 +1,5 @@
 #define CATCH_CONFIG_MAIN
 
 #include <catch2/catch_all.hpp>
+
+int main() { return 0; }
-- 
2.39.0

