mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-14 20:26:00 +08:00
Fix of typp
This commit is contained in:
parent
e50e999b8e
commit
1633f2c796
@ -116,7 +116,7 @@ template <typename T>
|
|||||||
inline void append_reversed(std::vector<T>& dest, const std::vector<T>& src)
|
inline void append_reversed(std::vector<T>& dest, const std::vector<T>& src)
|
||||||
{
|
{
|
||||||
if (dest.empty())
|
if (dest.empty())
|
||||||
dst = {src.rbegin(), src.rend()};
|
dest = {src.rbegin(), src.rend()};
|
||||||
else
|
else
|
||||||
dest.insert(dest.end(), src.rbegin(), src.rend());
|
dest.insert(dest.end(), src.rbegin(), src.rend());
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user