]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/pool/include/boost/pool/detail/pool_construct_simple.m4
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / pool / include / boost / pool / detail / pool_construct_simple.m4
CommitLineData
7c673cae
FG
1m4_dnl
2m4_dnl Copyright (C) 2001 Stephen Cleary
3m4_dnl
4m4_dnl Distributed under the Boost Software License, Version 1.0. (See accompany-
5m4_dnl ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6m4_dnl
7m4_dnl See http://www.boost.org for updates, documentation, and revision history.
8m4_dnl
9m4_dnl
10m4_dnl
11m4_dnl Avoid the use of any m4_* identifiers in this header file,
12m4_dnl as that may cause incompatibility problems with future
13m4_dnl versions of m4.
14m4_dnl
15m4_dnl This is a normal header file, except that lines starting
16m4_dnl with `m4_dnl' will be stripped, TBA_FOR
17m4_dnl macros will be replaced with repeated text, and text in
18m4_dnl single quotes (`...') will have their single quotes
19m4_dnl stripped.
20m4_dnl
21m4_dnl
22m4_dnl Check to make sure NumberOfArguments was defined. If it's not defined,
23m4_dnl default to 3
24m4_dnl
25m4_ifdef(`NumberOfArguments', , `m4_errprint(m4___file__:m4___line__`: NumberOfArguments is not defined; defaulting to 3
26')m4_define(`NumberOfArguments', 3)')m4_dnl
27m4_ifelse(NumberOfArguments, , `m4_errprint(m4___file__:m4___line__`: NumberOfArguments is defined to be empty; defaulting to 3
28')m4_define(`NumberOfArguments', 3)')m4_dnl
29m4_dnl
30m4_dnl Check to make sure NumberOfArguments >= 1. If it's not, then fatal error.
31m4_dnl
32m4_ifelse(m4_eval(NumberOfArguments < 1), 1, `m4_errprint(m4___file__:m4___line__`: NumberOfArguments ('NumberOfArguments`) is less than 1
33')m4_m4exit(1)')m4_dnl
34m4_dnl
35m4_dnl Include the BOOST_M4_FOR macro definition
36m4_dnl
37m4_include(`for.m4')`'m4_dnl
38m4_dnl
39m4_dnl Begin the generated file.
40m4_dnl
41// Copyright (C) 2000 Stephen Cleary
42//
43// Distributed under the Boost Software License, Version 1.0. (See
44// accompanying file LICENSE_1_0.txt or copy at
45// http://www.boost.org/LICENSE_1_0.txt)
46//
47// See http://www.boost.org for updates, documentation, and revision history.
48
49m4_dnl These warnings apply to the file generated from this file.
50m4_dnl Of course, you may freely edit this file.
51// This file was AUTOMATICALLY GENERATED from "m4___file__"
52// Do NOT include directly!
53// Do NOT edit!
54
55m4_dnl
56m4_dnl Here we go through the actual loop. For each number of arguments from
57m4_dnl 1 to NumberOfArguments, we create a template function that takes that
58m4_dnl many template arguments.
59m4_dnl
60BOOST_M4_FOR(N, 1, NumberOfArguments + 1,
61`template <BOOST_M4_FOR(i, 0, N, `typename T`'i', `, ')>
62element_type * construct(BOOST_M4_FOR(i, 0, N,
63 `const T`'i & a`'i', `, '))
64{
65 element_type * const ret = (malloc)();
66 if (ret == 0)
67 return ret;
68 try { new (ret) element_type(BOOST_M4_FOR(i, 0, N, `a`'i', `, ')); }
69 catch (...) { (free)(ret); throw; }
70 return ret;
71}
72')