Wayverb
set.h
1 #pragma once
2 
3 #include "utilities/aligned/allocator.h"
4 
5 #include <set>
6 
7 namespace util {
8 namespace aligned {
9 
10 template <typename T, typename Cmp = std::less<T>>
11 using set = std::set<T, Cmp, allocator<T>>;
12 
13 } // namespace aligned
14 } // namespace util
Definition: allocator.h:6