diff options
| author | 2021-09-08 14:47:01 -0400 | |
|---|---|---|
| committer | 2021-09-11 17:19:14 -0400 | |
| commit | eb1e3f19bb58802497ad2d71a36964d182839471 (patch) | |
| tree | f7c06c0175fdd13ae69ef7be18925111a18a7103 /src | |
| parent | common: Move error handling to error.cpp/h (diff) | |
| download | yuzu-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.h | 2 |
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 |