diff options
author | Shauren <shauren.trinity@gmail.com> | 2025-08-15 12:37:15 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2025-08-15 13:08:16 +0200 |
commit | 611527b32f70d22e11ad05446810034c0bcd91d1 (patch) | |
tree | ef97d35d791c1beb4593e0c45c22a21327759525 | |
parent | 7d33481fa96f505e10e6461584614a8520b4221e (diff) |
Core/Utils: Fix nopch build with gcc 14
(cherry picked from commit 764b6a5a9336f77f43810022ce449524f6225b53)
-rw-r--r-- | src/common/Containers/FlatSet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/Containers/FlatSet.h b/src/common/Containers/FlatSet.h index 5602ba17254..346e5c2556b 100644 --- a/src/common/Containers/FlatSet.h +++ b/src/common/Containers/FlatSet.h @@ -17,6 +17,7 @@ #ifndef TRINITYCORE_FLAT_SET_H #define TRINITYCORE_FLAT_SET_H +#include <algorithm> #include <functional> #include <vector> |