From 5a1333026be53c36dd23a886d66fe779a6853210 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 10 Oct 2021 01:48:23 +0200 Subject: [PATCH] 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. --- Source/Core/VideoCommon/BoundingBox.cpp | 2 ++ 1 file changed, 2 insertions(+) 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 + #include "Common/Assert.h" #include "Common/ChunkFile.h" #include "Common/CommonTypes.h"