diff options
| author | 2020-10-20 19:07:39 -0700 | |
|---|---|---|
| committer | 2020-10-20 19:07:39 -0700 | |
| commit | 3d592972dc3fd61cc88771b889eff237e4e03e0f (patch) | |
| tree | 0dbc65ac86e609ae22087c7be9d4759ac6b73004 /src/common/file_util.h | |
| parent | kernel: Fix build with recent compiler flag changes (diff) | |
| download | yuzu-3d592972dc3fd61cc88771b889eff237e4e03e0f.tar.gz yuzu-3d592972dc3fd61cc88771b889eff237e4e03e0f.tar.xz yuzu-3d592972dc3fd61cc88771b889eff237e4e03e0f.zip | |
Revert "core: Fix clang build"
Diffstat (limited to 'src/common/file_util.h')
| -rw-r--r-- | src/common/file_util.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/file_util.h b/src/common/file_util.h index 508b7a10a..8b587320f 100644 --- a/src/common/file_util.h +++ b/src/common/file_util.h | |||
| @@ -189,8 +189,7 @@ template <typename T> | |||
| 189 | return {}; | 189 | return {}; |
| 190 | } | 190 | } |
| 191 | last = std::min<std::size_t>(last, vector.size()); | 191 | last = std::min<std::size_t>(last, vector.size()); |
| 192 | return std::vector<T>(vector.begin() + static_cast<std::ptrdiff_t>(first), | 192 | return std::vector<T>(vector.begin() + first, vector.begin() + first + last); |
| 193 | vector.begin() + static_cast<std::ptrdiff_t>(first + last)); | ||
| 194 | } | 193 | } |
| 195 | 194 | ||
| 196 | enum class DirectorySeparator { | 195 | enum class DirectorySeparator { |