Fix of typp
This commit is contained in:
parent
e50e999b8e
commit
1633f2c796
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue