p2p/stingray_sdk/plugin_foundation/collection_tools.h
Lucas Schwiderski 2c9ce46dd2
chore: Rework project structure
There likely won't be much need for multiple separate crates.
2023-05-26 23:42:01 +02:00

16 lines
298 B
C++

#pragma once
#include "pair.h"
#include "vector"
namespace stingray_plugin_foundation {
template <class T>
inline void swap_erase(T &v, typename T::iterator it);
template <class T>
inline void swap_erase(T &v, int i);
} // namespace stingray_plugin_foundation
#include "collection_tools.inl"