From e099180d8fea827915de33650af9b22fe427884d Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 6 Mar 2025 11:29:47 +0000 Subject: [PATCH] Fix a REPRODUCIBLE_BUILD check after the previous commit. --- include/anope.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/anope.h b/include/anope.h index 1a9cdd0dd..08dff4af3 100644 --- a/include/anope.h +++ b/include/anope.h @@ -346,7 +346,7 @@ namespace Anope template using unordered_map = std::unordered_map; -#ifndef REPRODUCIBLE_BUILD +#if !REPRODUCIBLE_BUILD static const char *const compiled = __TIME__ " " __DATE__; #endif