diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-09-08 14:47:01 -0400 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-09-11 17:19:14 -0400 |
commit | eb1e3f19bb58802497ad2d71a36964d182839471 (patch) | |
tree | f7c06c0175fdd13ae69ef7be18925111a18a7103 /src/common/common_funcs.h | |
parent | 290afc00d36bbdcdc67d66a4586fd2f188734ad3 (diff) |
common_funcs: Replace <algorithm> with <iterator>
Diffstat (limited to 'src/common/common_funcs.h')
-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 85f8bdd227..1e74d69304 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h @@ -4,8 +4,8 @@ #pragma once -#include <algorithm> #include <array> +#include <iterator> #if !defined(ARCHITECTURE_x86_64) #include <cstdlib> // for exit |