Samchon Framework for CPP  1.0.0
CriticalList.hpp
1 #pragma once
2 
3 #include <list>
4 #include <samchon/library/CriticalAllocator.hpp>
5 
6 namespace samchon
7 {
8 namespace library
9 {
17  template <typename T>
18  using CriticalList = std::list<T, CriticalAllocator<T>>;
19 };
20 };