| 12345678910111213141516171819202122232425262728293031 |
- // Copyright (c) 2008-2023 the Urho3D project
- // License: MIT
- #include "../Precompiled.h"
- #include "../Container/ListBase.h"
- namespace Urho3D
- {
- template <> void Swap<String>(String& first, String& second)
- {
- first.Swap(second);
- }
- template <> void Swap<VectorBase>(VectorBase& first, VectorBase& second)
- {
- first.Swap(second);
- }
- template <> void Swap<ListBase>(ListBase& first, ListBase& second)
- {
- first.Swap(second);
- }
- template <> void Swap<HashBase>(HashBase& first, HashBase& second)
- {
- first.Swap(second);
- }
- }
|