Skip to the content.

:heavy_check_mark: adaptor/stack.hpp

Required by

Verified with

Code

#pragma once


#include <stack>
#include <vector>


namespace uni {


template<class T, class Allocator = std::allocator<T>>
using stack = std::stack<T, std::vector<T, Allocator>>;


} // namespace uni
#line 2 "adaptor/stack.hpp"


#include <stack>
#include <vector>


namespace uni {


template<class T, class Allocator = std::allocator<T>>
using stack = std::stack<T, std::vector<T, Allocator>>;


} // namespace uni
Back to top page