summaryrefslogtreecommitdiff
path: root/boost/context/stack_allocator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/context/stack_allocator.hpp')
-rw-r--r--boost/context/stack_allocator.hpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/boost/context/stack_allocator.hpp b/boost/context/stack_allocator.hpp
deleted file mode 100644
index 0db50157d1..0000000000
--- a/boost/context/stack_allocator.hpp
+++ /dev/null
@@ -1,37 +0,0 @@
-
-// Copyright Oliver Kowalke 2009.
-// Distributed under the Boost Software License, Version 1.0.
-// (See accompanying file LICENSE_1_0.txt or copy at
-// http://www.boost.org/LICENSE_1_0.txt)
-
-#ifndef BOOST_CTX_STACK_ALLOCATOR_H
-#define BOOST_CTX_STACK_ALLOCATOR_H
-
-#include <cstddef>
-
-#include <boost/config.hpp>
-
-#include <boost/context/detail/config.hpp>
-
-#ifdef BOOST_HAS_ABI_HEADERS
-# include BOOST_ABI_PREFIX
-#endif
-
-namespace boost {
-namespace ctx {
-
-class BOOST_CONTEXT_DECL stack_allocator
-{
-public:
- void * allocate( std::size_t) const;
-
- void deallocate( void *, std::size_t) const;
-};
-
-}}
-
-#ifdef BOOST_HAS_ABI_HEADERS
-# include BOOST_ABI_SUFFIX
-#endif
-
-#endif // BOOST_CTX_STACK_ALLOCATOR_H