From 55710ea00ec211bb4ecf3f5cb6796561e103ad16 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 26 Oct 2019 22:43:25 -0400 Subject: [PATCH] Switches the presumption to requiring NDEBUG to avoid forced inlines. --- ClockReceiver/ForceInline.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ClockReceiver/ForceInline.hpp b/ClockReceiver/ForceInline.hpp index 8bf71a094..d3c3dc512 100644 --- a/ClockReceiver/ForceInline.hpp +++ b/ClockReceiver/ForceInline.hpp @@ -9,9 +9,9 @@ #ifndef ForceInline_hpp #define ForceInline_hpp -#ifdef DEBUG +#ifndef NDEBUG -#define forceinline +#define forceinline inline #else