1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

Switches the presumption to requiring NDEBUG to avoid forced inlines.

This commit is contained in:
Thomas Harte 2019-10-26 22:43:25 -04:00
parent 36a9a5288b
commit 55710ea00e

View File

@ -9,9 +9,9 @@
#ifndef ForceInline_hpp
#define ForceInline_hpp
#ifdef DEBUG
#ifndef NDEBUG
#define forceinline
#define forceinline inline
#else