diff options
| author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2021-10-10 01:48:23 +0200 |
|---|---|---|
| committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2021-11-02 13:50:21 +0100 |
| commit | 5a1333026be53c36dd23a886d66fe779a6853210 (patch) | |
| tree | 23587132f77fc0481c22504b2a325d93ca43288b /Source/Core/VideoCommon/BoundingBox.cpp | |
| parent | 7590f07b80d2ff994912675bc2e3689c5b69bd57 (diff) | |
VideoCommon: Add missing algorithm include for std::none_of
Otherwise this is an error on gcc/libstdc++, and there are no transitive
includes for this header.
Diffstat (limited to 'Source/Core/VideoCommon/BoundingBox.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/BoundingBox.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/BoundingBox.cpp b/Source/Core/VideoCommon/BoundingBox.cpp index 6411ec94dc..33cffef469 100644 --- a/Source/Core/VideoCommon/BoundingBox.cpp +++ b/Source/Core/VideoCommon/BoundingBox.cpp @@ -3,6 +3,8 @@ #include "VideoCommon/BoundingBox.h" +#include <algorithm> + #include "Common/Assert.h" #include "Common/ChunkFile.h" #include "Common/CommonTypes.h" |
