summaryrefslogtreecommitdiff
path: root/include/anope.h
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-03-06 11:29:47 +0000
committerSadie Powell <sadie@witchery.services>2025-03-06 11:29:47 +0000
commite099180d8fea827915de33650af9b22fe427884d (patch)
tree6c10a579d78ef030c33d7ed75ffc8ae1a4fccad1 /include/anope.h
parent2091dc68bc0bbb8fe29c8123fd59f9f42dc22737 (diff)
Fix a REPRODUCIBLE_BUILD check after the previous commit.
Diffstat (limited to 'include/anope.h')
-rw-r--r--include/anope.h2
1 files changed, 1 insertions, 1 deletions
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<typename T>
using unordered_map = std::unordered_map<string, T, hash_ci, compare>;
-#ifndef REPRODUCIBLE_BUILD
+#if !REPRODUCIBLE_BUILD
static const char *const compiled = __TIME__ " " __DATE__;
#endif