20 #ifndef RIPPLE_APP_PATHS_IMPL_FLAT_SETS_H_INCLUDED
21 #define RIPPLE_APP_PATHS_IMPL_FLAT_SETS_H_INCLUDED
23 #include <boost/container/flat_set.hpp>
36 boost::container::flat_set<T>& dst,
37 boost::container::flat_set<T>
const& src)
42 dst.reserve(dst.size() + src.size());
44 boost::container::ordered_unique_range_t{}, src.begin(), src.end());