summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Morph2021-09-08 14:47:01 -0400
committerGravatar Morph2021-09-11 17:19:14 -0400
commiteb1e3f19bb58802497ad2d71a36964d182839471 (patch)
treef7c06c0175fdd13ae69ef7be18925111a18a7103 /src
parentcommon: Move error handling to error.cpp/h (diff)
downloadyuzu-eb1e3f19bb58802497ad2d71a36964d182839471.tar.gz
yuzu-eb1e3f19bb58802497ad2d71a36964d182839471.tar.xz
yuzu-eb1e3f19bb58802497ad2d71a36964d182839471.zip
common_funcs: Replace <algorithm> with <iterator>
Diffstat (limited to 'src')
-rw-r--r--src/common/common_funcs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h
index 85f8bdd22..1e74d6930 100644
--- a/src/common/common_funcs.h
+++ b/src/common/common_funcs.h
@@ -4,8 +4,8 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <algorithm>
8#include <array> 7#include <array>
8#include <iterator>
9 9
10#if !defined(ARCHITECTURE_x86_64) 10#if !defined(ARCHITECTURE_x86_64)
11#include <cstdlib> // for exit 11#include <cstdlib> // for exit