diff options
| author | 2019-10-15 14:47:42 -0400 | |
|---|---|---|
| committer | 2019-10-15 15:24:50 -0400 | |
| commit | ac4dbd3b25f022b3ef025f6d3451712187308efb (patch) | |
| tree | 0d2b2fac72afd6c8ae91935ff5c1968590bd2d8a /src/common/algorithm.h | |
| parent | Merge pull request #2965 from FernandoS27/fair-core-timing (diff) | |
| download | yuzu-ac4dbd3b25f022b3ef025f6d3451712187308efb.tar.gz yuzu-ac4dbd3b25f022b3ef025f6d3451712187308efb.tar.xz yuzu-ac4dbd3b25f022b3ef025f6d3451712187308efb.zip | |
common: Rename binary_find.h to algorithm.h
Makes the header more general for other potential algorithms in the
future. While we're at it, include a missing <functional> include to
satisfy the use of std::less.
Diffstat (limited to '')
| -rw-r--r-- | src/common/algorithm.h (renamed from src/common/binary_find.h) | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/binary_find.h b/src/common/algorithm.h index 5cc523bf9..18e7ece98 100644 --- a/src/common/binary_find.h +++ b/src/common/algorithm.h | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <algorithm> | 7 | #include <algorithm> |
| 8 | #include <functional> | ||
| 8 | 9 | ||
| 9 | namespace Common { | 10 | namespace Common { |
| 10 | 11 | ||