Allocator Builder
Policy Based C++ Template Allocator Library
 All Classes Functions Variables Enumerations Enumerator Groups Pages
array_creation_evaluator.hpp
1 //
3 // Copyright 2015 Felix Petriconi
4 //
5 // License: http://boost.org/LICENSE_1_0.txt, Boost License 1.0
6 //
7 // Authors: http://petriconi.net, Felix Petriconi
8 //
10 #pragma once
11 #include <stddef.h>
12 
13 namespace alb
14 {
15  inline namespace v_100
16  {
17  namespace helpers
18  {
19  size_t array_offset();
20  }
21  }
22  using namespace v_100;
23 }