mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 11:05:46 +00:00
Revert "core: Fix clang build"
This commit is contained in:
parent
1367e8fb75
commit
deb3536936
105 changed files with 667 additions and 906 deletions
|
@ -189,8 +189,7 @@ template <typename T>
|
|||
return {};
|
||||
}
|
||||
last = std::min<std::size_t>(last, vector.size());
|
||||
return std::vector<T>(vector.begin() + static_cast<std::ptrdiff_t>(first),
|
||||
vector.begin() + static_cast<std::ptrdiff_t>(first + last));
|
||||
return std::vector<T>(vector.begin() + first, vector.begin() + first + last);
|
||||
}
|
||||
|
||||
enum class DirectorySeparator {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue