diff options
author | Sadie Powell <sadie@witchery.services> | 2025-03-06 11:29:47 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-03-06 11:29:47 +0000 |
commit | e099180d8fea827915de33650af9b22fe427884d (patch) | |
tree | 6c10a579d78ef030c33d7ed75ffc8ae1a4fccad1 /include/anope.h | |
parent | 2091dc68bc0bbb8fe29c8123fd59f9f42dc22737 (diff) |
Fix a REPRODUCIBLE_BUILD check after the previous commit.
Diffstat (limited to 'include/anope.h')
-rw-r--r-- | include/anope.h | 2 |
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 |