diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/libs/phoenix/test/include/statement | |
parent | Initial commit. (diff) | |
download | ceph-upstream.tar.xz ceph-upstream.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/phoenix/test/include/statement')
8 files changed, 57 insertions, 0 deletions
diff --git a/src/boost/libs/phoenix/test/include/statement/do_while.cpp b/src/boost/libs/phoenix/test/include/statement/do_while.cpp new file mode 100644 index 00000000..9f4aadbe --- /dev/null +++ b/src/boost/libs/phoenix/test/include/statement/do_while.cpp @@ -0,0 +1,7 @@ +/*============================================================================= + Copyright (c) 2011 Thomas Heller + 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) +==============================================================================*/ +#include <boost/phoenix/statement/do_while.hpp> +int main() {} diff --git a/src/boost/libs/phoenix/test/include/statement/for.cpp b/src/boost/libs/phoenix/test/include/statement/for.cpp new file mode 100644 index 00000000..a3d513e9 --- /dev/null +++ b/src/boost/libs/phoenix/test/include/statement/for.cpp @@ -0,0 +1,7 @@ +/*============================================================================= + Copyright (c) 2011 Thomas Heller + 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) +==============================================================================*/ +#include <boost/phoenix/statement/for.hpp> +int main() {} diff --git a/src/boost/libs/phoenix/test/include/statement/if.cpp b/src/boost/libs/phoenix/test/include/statement/if.cpp new file mode 100644 index 00000000..3fae4b74 --- /dev/null +++ b/src/boost/libs/phoenix/test/include/statement/if.cpp @@ -0,0 +1,7 @@ +/*============================================================================= + Copyright (c) 2011 Thomas Heller + 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) +==============================================================================*/ +#include <boost/phoenix/statement/if.hpp> +int main() {} diff --git a/src/boost/libs/phoenix/test/include/statement/sequence.cpp b/src/boost/libs/phoenix/test/include/statement/sequence.cpp new file mode 100644 index 00000000..56f49122 --- /dev/null +++ b/src/boost/libs/phoenix/test/include/statement/sequence.cpp @@ -0,0 +1,7 @@ +/*============================================================================= + Copyright (c) 2011 Thomas Heller + 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) +==============================================================================*/ +#include <boost/phoenix/statement/sequence.hpp> +int main() {} diff --git a/src/boost/libs/phoenix/test/include/statement/switch.cpp b/src/boost/libs/phoenix/test/include/statement/switch.cpp new file mode 100644 index 00000000..e9218410 --- /dev/null +++ b/src/boost/libs/phoenix/test/include/statement/switch.cpp @@ -0,0 +1,7 @@ +/*============================================================================= + Copyright (c) 2011 Thomas Heller + 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) +==============================================================================*/ +#include <boost/phoenix/statement/switch.hpp> +int main() {} diff --git a/src/boost/libs/phoenix/test/include/statement/throw.cpp b/src/boost/libs/phoenix/test/include/statement/throw.cpp new file mode 100644 index 00000000..5c506fed --- /dev/null +++ b/src/boost/libs/phoenix/test/include/statement/throw.cpp @@ -0,0 +1,8 @@ +/*============================================================================= + Copyright (c) 2011 Thomas Heller + 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) +==============================================================================*/ +//#define BOOST_PHOENIX_NO_SPECIALIZE_CUSTOM_TERMINAL +#include <boost/phoenix/statement/throw.hpp> +int main() {} diff --git a/src/boost/libs/phoenix/test/include/statement/try_catch.cpp b/src/boost/libs/phoenix/test/include/statement/try_catch.cpp new file mode 100644 index 00000000..f743aeb5 --- /dev/null +++ b/src/boost/libs/phoenix/test/include/statement/try_catch.cpp @@ -0,0 +1,7 @@ +/*============================================================================= + Copyright (c) 2011 Thomas Heller + 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) +==============================================================================*/ +#include <boost/phoenix/statement/try_catch.hpp> +int main() {} diff --git a/src/boost/libs/phoenix/test/include/statement/while.cpp b/src/boost/libs/phoenix/test/include/statement/while.cpp new file mode 100644 index 00000000..a99e9d22 --- /dev/null +++ b/src/boost/libs/phoenix/test/include/statement/while.cpp @@ -0,0 +1,7 @@ +/*============================================================================= + Copyright (c) 2011 Thomas Heller + 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) +==============================================================================*/ +#include <boost/phoenix/statement/while.hpp> +int main() {} |