From e750cdc24a47dfa9b8d731c5adaedbc150bac8dc Mon Sep 17 00:00:00 2001 From: Adlai Holler Date: Fri, 19 Apr 2019 15:01:29 -0700 Subject: [PATCH] Keep the prior semantic of just requiring PROFILE to be defined --- Source/Base/ASSignpost.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Base/ASSignpost.h b/Source/Base/ASSignpost.h index 53530963..87cfe310 100644 --- a/Source/Base/ASSignpost.h +++ b/Source/Base/ASSignpost.h @@ -8,7 +8,7 @@ #import -#if defined(PROFILE) && PROFILE +#ifdef PROFILE static constexpr bool kASSignpostsEnabled = true; #else static constexpr bool kASSignpostsEnabled = false;