Broom 1.0.0
A thread-local C++ Garbage Collector
Loading...
Searching...
No Matches
broom-stack.h
Go to the documentation of this file.
1#pragma once
2
3#include <stack>
4
5#include "broom-deque.h"
6
7namespace broom {
11template <typename T>
12using stack = std::stack<T, broom::deque<T>>;
13} // namespace broom
std::stack< T, broom::deque< T > > stack
Definition broom-stack.h:12