From 34a6fe705568e892fd1a6c9999e4cf3f0787e0b7 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 7 Jun 2019 01:07:51 +0200 Subject: [PATCH] _bswap may be already defined. --- client/TracyEtc1.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/TracyEtc1.cpp b/client/TracyEtc1.cpp index dd1cd244..97267946 100644 --- a/client/TracyEtc1.cpp +++ b/client/TracyEtc1.cpp @@ -16,7 +16,9 @@ #else # ifndef _MSC_VER # include -# define _bswap(x) bswap_32(x) +# ifndef _bswap +# define _bswap(x) bswap_32(x) +# endif # endif #endif