From a77b1393050001991382a9bac3f395cf9c463f32 Mon Sep 17 00:00:00 2001 From: FelixBrendel Date: Mon, 6 Apr 2020 00:11:37 +0200 Subject: [PATCH] removed duplicate code --- macros.hpp | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/macros.hpp b/macros.hpp index d4da426..03219fd 100644 --- a/macros.hpp +++ b/macros.hpp @@ -1,24 +1,6 @@ #pragma once -// #include #define proc auto - -#ifdef _DEBUG -# define if_debug if constexpr (true) -#else -# define if_debug if constexpr (false) -#endif - -#ifdef _MSC_VER -# define debug_break() if_debug __debugbreak() -# define if_windows if constexpr (true) -# define if_linux if constexpr (false) -#else -# define debug_break() if_debug raise(SIGTRAP) -# define if_windows if constexpr (false) -# define if_linux if constexpr (true) -#endif - #define TOKENPASTE(x, y) x ## y #define TOKENPASTE2(x, y) TOKENPASTE(x, y)