From 0cb47a248ed5d5ab3f9454399e2d6013d1f1008e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ko=CC=88hler?= Date: Thu, 29 Aug 2024 20:33:20 +0200 Subject: [PATCH] Remove unnecessary wx dependency in case _DEBUG is not defined --- Linalg.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Linalg.h b/Linalg.h index b3bfdeb..5f22a56 100644 --- a/Linalg.h +++ b/Linalg.h @@ -34,7 +34,9 @@ #ifdef MS_VS #include #else +#ifdef _DEBUG # include +#endif # define _ASSERT wxASSERT #endif