From de7062af9cf628964ec51424cbf58e18266a49bb Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 22 Apr 2021 09:23:28 +0200 Subject: [PATCH] LibRegex: Unbreak the ALL_DEBUG build --- Userland/Libraries/LibRegex/RegexDebug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibRegex/RegexDebug.h b/Userland/Libraries/LibRegex/RegexDebug.h index 19c028b9c7..1f53217a68 100644 --- a/Userland/Libraries/LibRegex/RegexDebug.h +++ b/Userland/Libraries/LibRegex/RegexDebug.h @@ -30,7 +30,7 @@ #include "LibRegex/RegexMatcher.h" #include -#if !REGEX_DEBUG +#if REGEX_DEBUG namespace regex {