diff options
author | Francesco Borzì <borzifrancesco@gmail.com> | 2024-10-31 21:46:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-31 21:46:11 +0100 |
commit | c06cadfe754967080c7e2a7a8d2718d6c51e7ea3 (patch) | |
tree | 0e19eddd0f250a63466ea6f464c272f9a05a2934 /src/common/Utilities/SFMTRand.cpp | |
parent | 598f78730c2aaab67ef19774cc783c7be3759784 (diff) |
refactor(src/common|server): remove unused import (big part 1) (#20377)
* refactor(src/common|server): remove unused import (big part 1)
* chore: fix build
* chore: fix build
* chore: fix build
* chore: fix build
* chore: attempt to fix damn linkin error
Diffstat (limited to 'src/common/Utilities/SFMTRand.cpp')
-rw-r--r-- | src/common/Utilities/SFMTRand.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Utilities/SFMTRand.cpp b/src/common/Utilities/SFMTRand.cpp index c109924dbb..d21432bc94 100644 --- a/src/common/Utilities/SFMTRand.cpp +++ b/src/common/Utilities/SFMTRand.cpp @@ -17,8 +17,8 @@ #include "SFMTRand.h" #include "Timer.h" +#include <algorithm> #include <array> -#include <functional> #include <random> #if defined(__aarch64__) |