diff --git a/include/boost/phoenix/core/arity.hpp b/include/boost/phoenix/core/arity.hpp index e9cfc7f..23aa431 100644 --- a/include/boost/phoenix/core/arity.hpp +++ b/include/boost/phoenix/core/arity.hpp @@ -10,6 +10,7 @@ #include #include +#include #include #include #include diff --git a/include/boost/phoenix/core/domain.hpp b/include/boost/phoenix/core/domain.hpp index 8a4f3ec..83f0ef3 100644 --- a/include/boost/phoenix/core/domain.hpp +++ b/include/boost/phoenix/core/domain.hpp @@ -8,6 +8,7 @@ #ifndef PHOENIX_CORE_DOMAIN_HPP #define PHOENIX_CORE_DOMAIN_HPP +#include #include #include #include diff --git a/include/boost/phoenix/core/environment.hpp b/include/boost/phoenix/core/environment.hpp index e1783f0..f3de91c 100644 --- a/include/boost/phoenix/core/environment.hpp +++ b/include/boost/phoenix/core/environment.hpp @@ -7,9 +7,10 @@ #ifndef PHOENIX_CORE_ENVIRONMENT_HPP #define PHOENIX_CORE_ENVIRONMENT_HPP -#include -#include #include +#include +#include +#include #include #include diff --git a/include/boost/phoenix/core/is_actor.hpp b/include/boost/phoenix/core/is_actor.hpp index 7a4aa94..b180f71 100644 --- a/include/boost/phoenix/core/is_actor.hpp +++ b/include/boost/phoenix/core/is_actor.hpp @@ -7,6 +7,8 @@ #ifndef PHOENIX_CORE_IS_ACTOR_HPP #define PHOENIX_CORE_IS_ACTOR_HPP +#include + namespace boost { namespace phoenix { /////////////////////////////////////////////////////////////////////////////// @@ -16,6 +18,10 @@ namespace boost { namespace phoenix // Tests if T is an actor. Evaluates to mpl::true_ or mpl::false_ // /////////////////////////////////////////////////////////////////////////////// + + template + struct actor; + template struct is_actor : mpl::false_ {}; diff --git a/include/boost/phoenix/core/no_nullary.hpp b/include/boost/phoenix/core/no_nullary.hpp index 79af574..0f24837 100644 --- a/include/boost/phoenix/core/no_nullary.hpp +++ b/include/boost/phoenix/core/no_nullary.hpp @@ -11,6 +11,7 @@ #include #include #include +#include #include #include #include @@ -22,6 +23,8 @@ namespace boost { namespace phoenix { + template + struct funcwrap; template struct enable_nullary diff --git a/include/boost/phoenix/function/function.hpp b/include/boost/phoenix/function/function.hpp index e104608..4809af9 100644 --- a/include/boost/phoenix/function/function.hpp +++ b/include/boost/phoenix/function/function.hpp @@ -8,10 +8,10 @@ #ifndef PHOENIX_FUNCTION_FUNCTION_HPP #define PHOENIX_FUNCTION_FUNCTION_HPP +#include #include #include #include -#include #include #include #include @@ -61,6 +61,7 @@ namespace boost { namespace phoenix , F, A0, A1, A2> {}; + // Bring in the rest #include } @@ -112,6 +113,7 @@ namespace boost { namespace phoenix proto::tag::function, phoenix_domain>(f, a0, a1, a2); } + // Bring in the rest #include F f; diff --git a/include/boost/phoenix/fusion/at.hpp b/include/boost/phoenix/fusion/at.hpp index 7e6dacd..18a93fd 100644 --- a/include/boost/phoenix/fusion/at.hpp +++ b/include/boost/phoenix/fusion/at.hpp @@ -9,7 +9,8 @@ #ifndef PHOENIX_FUSION_AT_HPP #define PHOENIX_FUSION_AT_HPP -#include +#include +#include #include #include #include @@ -21,11 +22,11 @@ namespace boost { namespace phoenix template struct at : fusion::result_of::at_c< - typename remove_reference< - boost::result_of< + typename boost::remove_reference< + typename boost::result_of< eval_grammar(Tuple const&, Env&) >::type - > + >::type , N > {}; diff --git a/include/boost/phoenix/object/const_cast.hpp b/include/boost/phoenix/object/const_cast.hpp index 4879e26..03d882a 100644 --- a/include/boost/phoenix/object/const_cast.hpp +++ b/include/boost/phoenix/object/const_cast.hpp @@ -8,6 +8,8 @@ #ifndef PHOENIX_OBJECT_CONST_CAST_HPP #define PHOENIX_OBJECT_CONST_CAST_HPP +#include + namespace boost { namespace phoenix { namespace result_of diff --git a/include/boost/phoenix/object/construct.hpp b/include/boost/phoenix/object/construct.hpp index 9dda7a8..0210409 100644 --- a/include/boost/phoenix/object/construct.hpp +++ b/include/boost/phoenix/object/construct.hpp @@ -9,6 +9,7 @@ #define PHOENIX_OBJECT_CONSTRUCT_HPP #include +#include namespace boost { namespace phoenix { diff --git a/include/boost/phoenix/object/delete.hpp b/include/boost/phoenix/object/delete.hpp index f61bb46..06b32b7 100644 --- a/include/boost/phoenix/object/delete.hpp +++ b/include/boost/phoenix/object/delete.hpp @@ -8,6 +8,8 @@ #ifndef PHOENIX_OBJECT_DELETE_HPP #define PHOENIX_OBJECT_DELETE_HPP +#include + namespace boost { namespace phoenix { diff --git a/include/boost/phoenix/object/dynamic_cast.hpp b/include/boost/phoenix/object/dynamic_cast.hpp index da19e81..14a6286 100644 --- a/include/boost/phoenix/object/dynamic_cast.hpp +++ b/include/boost/phoenix/object/dynamic_cast.hpp @@ -8,6 +8,8 @@ #ifndef PHOENIX_OBJECT_DYNAMIC_CAST_HPP #define PHOENIX_OBJECT_DYNAMIC_CAST_HPP +#include + namespace boost { namespace phoenix { namespace result_of diff --git a/include/boost/phoenix/object/if_else.hpp b/include/boost/phoenix/object/if_else.hpp deleted file mode 100644 index 863fb50..0000000 --- a/include/boost/phoenix/object/if_else.hpp +++ /dev/null @@ -1,67 +0,0 @@ -/*============================================================================== - Copyright (c) 2001-2010 Joel de Guzman - Copyright (c) 2010 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) -==============================================================================*/ -#ifndef PHOENIX_OBJECT_IF_ELSE_HPP -#define PHOENIX_OBJECT_IF_ELSE_HPP - -namespace boost { namespace phoenix -{ - namespace result_of - { - template - struct if_else - { - typedef typename boost::result_of::type then_type; - typedef typename boost::result_of::type else_type; - - typedef typename - mpl::if_< - mpl::and_< - is_same - , is_reference - > - , then_type - , typename remove_reference::type - >::type - type; - }; - } - - struct if_else_ - { - template - struct result; - - template - struct result - : result_of::if_else - {}; - - - template - typename result_of::if_else::type - operator()(Env& env, Cond const& cond, Then const& then, Else const& else_) const - { - return eval(cond, env) ? eval(then, env) : eval(else_, env); - } - }; - - - template - struct make_if_else : compose {}; - - template - typename make_if_else::type - if_else(Cond const & cond, Then const & then, Else const& else_) - { - return make_if_else()(cond, then, else_); - } - - -}} - -#endif diff --git a/include/boost/phoenix/object/new.hpp b/include/boost/phoenix/object/new.hpp index 0133bd6..83bdfbc 100644 --- a/include/boost/phoenix/object/new.hpp +++ b/include/boost/phoenix/object/new.hpp @@ -8,6 +8,7 @@ #ifndef PHOENIX_OBJECT_NEW_HPP #define PHOENIX_OBJECT_NEW_HPP +#include #include namespace boost { namespace phoenix diff --git a/include/boost/phoenix/object/reinterpret_cast.hpp b/include/boost/phoenix/object/reinterpret_cast.hpp index 0cc6a66..3656586 100644 --- a/include/boost/phoenix/object/reinterpret_cast.hpp +++ b/include/boost/phoenix/object/reinterpret_cast.hpp @@ -8,6 +8,8 @@ #ifndef PHOENIX_OBJECT_REINTERPRET_CAST_HPP #define PHOENIX_OBJECT_REINTERPRET_CAST_HPP +#include + namespace boost { namespace phoenix { namespace result_of diff --git a/include/boost/phoenix/object/static_cast.hpp b/include/boost/phoenix/object/static_cast.hpp index 96d6516..17c9550 100644 --- a/include/boost/phoenix/object/static_cast.hpp +++ b/include/boost/phoenix/object/static_cast.hpp @@ -8,6 +8,8 @@ #ifndef PHOENIX_OBJECT_STATIC_CAST_HPP #define PHOENIX_OBJECT_STATIC_CAST_HPP +#include + namespace boost { namespace phoenix { namespace result_of diff --git a/include/boost/phoenix/operator/if_else.hpp b/include/boost/phoenix/operator/if_else.hpp index 37e5cf8..dd6b8fc 100644 --- a/include/boost/phoenix/operator/if_else.hpp +++ b/include/boost/phoenix/operator/if_else.hpp @@ -8,6 +8,9 @@ #ifndef PHOENIX_OBJECT_IF_ELSE_HPP #define PHOENIX_OBJECT_IF_ELSE_HPP +#include +#include + namespace boost { namespace phoenix { namespace result_of diff --git a/include/boost/phoenix/operator/operator.hpp b/include/boost/phoenix/operator/operator.hpp index 02d2894..95cfc82 100644 --- a/include/boost/phoenix/operator/operator.hpp +++ b/include/boost/phoenix/operator/operator.hpp @@ -8,6 +8,8 @@ #ifndef PHOENIX_OPERATOR_OPERATOR_HPP #define PHOENIX_OPERATOR_OPERATOR_HPP +#include +#include #include #endif diff --git a/include/boost/phoenix/scope/dynamic.hpp b/include/boost/phoenix/scope/dynamic.hpp index d42c619..c460ae5 100644 --- a/include/boost/phoenix/scope/dynamic.hpp +++ b/include/boost/phoenix/scope/dynamic.hpp @@ -12,6 +12,8 @@ #include #include #include +#include +#include namespace boost { namespace phoenix { diff --git a/include/boost/phoenix/statement/switch.hpp b/include/boost/phoenix/statement/switch.hpp index 041782a..d931298 100644 --- a/include/boost/phoenix/statement/switch.hpp +++ b/include/boost/phoenix/statement/switch.hpp @@ -11,11 +11,13 @@ #include #include #include +#include #include +#include #include #include - #include +#include #include #include #include diff --git a/include/boost/phoenix/statement/throw.hpp b/include/boost/phoenix/statement/throw.hpp index a387564..edd993f 100644 --- a/include/boost/phoenix/statement/throw.hpp +++ b/include/boost/phoenix/statement/throw.hpp @@ -9,6 +9,9 @@ #ifndef PHOENIX_STATEMENT_THROW_HPP #define PHOENIX_STATEMENT_THROW_HPP +#include +#include + namespace boost { namespace phoenix { namespace result_of diff --git a/include/boost/phoenix/stl/container/container.hpp b/include/boost/phoenix/stl/container/container.hpp index 6e78026..6a51f51 100644 --- a/include/boost/phoenix/stl/container/container.hpp +++ b/include/boost/phoenix/stl/container/container.hpp @@ -8,11 +8,12 @@ #ifndef PHOENIX_STL_CONTAINER_CONTAINER_HPP #define PHOENIX_STL_CONTAINER_CONTAINER_HPP -#include -#include #include #include #include +#include +#include +#include #include namespace boost { namespace phoenix diff --git a/test/Jamfile b/test/Jamfile index 456df35..ff5ec10 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -88,3 +88,66 @@ test-suite phoenix_algorithm : [ run algorithm/querying.cpp ] [ run algorithm/querying2.cpp ] ; + +test-suite phoenix_include : + [ run include/bind_bind.cpp ] + #[ run include/bind_bind_member_function.cpp ] + #[ run include/bind_bind_member_variable.cpp ] + [ run include/bind.cpp ] + [ run include/core_actor.cpp ] + [ run include/core_argument.cpp ] + [ run include/core_arity.cpp ] + [ run include/core_compose.cpp ] + [ run include/core.cpp ] + [ run include/core_domain.cpp ] + [ run include/core_environment.cpp ] + [ run include/core_is_actor.cpp ] + [ run include/core_limits.cpp ] + [ run include/core_mem_obj_ptr.cpp ] + [ run include/core_meta_grammar.cpp ] + [ run include/core_no_nullary.cpp ] + [ run include/core_nothing.cpp ] + [ run include/core_reference.cpp ] + [ run include/core_value.cpp ] + [ run include/function.cpp ] + [ run include/function_function.cpp ] + [ run include/fusion_at.cpp ] + [ run include/fusion.cpp ] + [ run include/object_const_cast.cpp ] + [ run include/object_construct.cpp ] + [ run include/object.cpp ] + [ run include/object_delete.cpp ] + [ run include/object_dynamic_cast.cpp ] + [ run include/object_new.cpp ] + [ run include/object_reinterpret_cast.cpp ] + [ run include/object_static_cast.cpp ] + [ run include/operator.cpp ] + [ run include/operator_if_else.cpp ] + [ run include/operator_io.cpp ] + #[ run include/operator_member.cpp ] + [ run include/operator_operator.cpp ] + [ run include/scope.cpp ] + [ run include/scope_dynamic.cpp ] + [ run include/scope_lambda.cpp ] + [ run include/scope_let.cpp ] + [ run include/scope_local_variable.cpp ] + [ run include/scope_scoped_environment.cpp ] + [ run include/statement.cpp ] + [ run include/statement_do_while.cpp ] + [ run include/statement_for.cpp ] + [ run include/statement_if.cpp ] + [ run include/statement_switch.cpp ] + [ run include/statement_throw.cpp ] + [ run include/statement_try_catch.cpp ] + [ run include/statement_while.cpp ] + [ run include/stl_algorithm.cpp ] + [ run include/stl_algorithm_iteration.cpp ] + [ run include/stl_algorithm_querying.cpp ] + [ run include/stl_algorithm_transformation.cpp ] + [ run include/stl_container_container.cpp ] + [ run include/stl_container.cpp ] + [ run include/stl.cpp ] + [ run include/support_element_at.cpp ] + [ run include/support_iterate.cpp ] + [ run include/version.cpp ] + ; diff --git a/test/include/bind.cpp b/test/include/bind.cpp new file mode 100644 index 0000000..2b4fc69 --- /dev/null +++ b/test/include/bind.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/bind_bind.cpp b/test/include/bind_bind.cpp new file mode 100644 index 0000000..bd2bf22 --- /dev/null +++ b/test/include/bind_bind.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/bind_bind_member_function.cpp b/test/include/bind_bind_member_function.cpp new file mode 100644 index 0000000..8ac2330 --- /dev/null +++ b/test/include/bind_bind_member_function.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/bind_bind_member_variable.cpp b/test/include/bind_bind_member_variable.cpp new file mode 100644 index 0000000..9d67b1b --- /dev/null +++ b/test/include/bind_bind_member_variable.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core.cpp b/test/include/core.cpp new file mode 100644 index 0000000..4768bc6 --- /dev/null +++ b/test/include/core.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_actor.cpp b/test/include/core_actor.cpp new file mode 100644 index 0000000..73a74e0 --- /dev/null +++ b/test/include/core_actor.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_argument.cpp b/test/include/core_argument.cpp new file mode 100644 index 0000000..d027342 --- /dev/null +++ b/test/include/core_argument.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_arity.cpp b/test/include/core_arity.cpp new file mode 100644 index 0000000..be8a506 --- /dev/null +++ b/test/include/core_arity.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_compose.cpp b/test/include/core_compose.cpp new file mode 100644 index 0000000..b641083 --- /dev/null +++ b/test/include/core_compose.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_detail_actor_fun_eval.cpp b/test/include/core_detail_actor_fun_eval.cpp new file mode 100644 index 0000000..48427ad --- /dev/null +++ b/test/include/core_detail_actor_fun_eval.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_detail_actor_operator.cpp b/test/include/core_detail_actor_operator.cpp new file mode 100644 index 0000000..26a7a77 --- /dev/null +++ b/test/include/core_detail_actor_operator.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_detail_actor_result_of.cpp b/test/include/core_detail_actor_result_of.cpp new file mode 100644 index 0000000..518dca4 --- /dev/null +++ b/test/include/core_detail_actor_result_of.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_detail_compose_ex.cpp b/test/include/core_detail_compose_ex.cpp new file mode 100644 index 0000000..ac6ef7e --- /dev/null +++ b/test/include/core_detail_compose_ex.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_detail_compose_result_of.cpp b/test/include/core_detail_compose_result_of.cpp new file mode 100644 index 0000000..4d066c9 --- /dev/null +++ b/test/include/core_detail_compose_result_of.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_detail_make_basic_environment.cpp b/test/include/core_detail_make_basic_environment.cpp new file mode 100644 index 0000000..871c872 --- /dev/null +++ b/test/include/core_detail_make_basic_environment.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_domain.cpp b/test/include/core_domain.cpp new file mode 100644 index 0000000..111ac68 --- /dev/null +++ b/test/include/core_domain.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_environment.cpp b/test/include/core_environment.cpp new file mode 100644 index 0000000..e36a14d --- /dev/null +++ b/test/include/core_environment.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_is_actor.cpp b/test/include/core_is_actor.cpp new file mode 100644 index 0000000..b990328 --- /dev/null +++ b/test/include/core_is_actor.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_limits.cpp b/test/include/core_limits.cpp new file mode 100644 index 0000000..88d8657 --- /dev/null +++ b/test/include/core_limits.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_make_function.cpp b/test/include/core_make_function.cpp new file mode 100644 index 0000000..a2c43bc --- /dev/null +++ b/test/include/core_make_function.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_mem_obj_ptr.cpp b/test/include/core_mem_obj_ptr.cpp new file mode 100644 index 0000000..0b8b226 --- /dev/null +++ b/test/include/core_mem_obj_ptr.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_meta_grammar.cpp b/test/include/core_meta_grammar.cpp new file mode 100644 index 0000000..59258f5 --- /dev/null +++ b/test/include/core_meta_grammar.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_no_nullary.cpp b/test/include/core_no_nullary.cpp new file mode 100644 index 0000000..5c5be71 --- /dev/null +++ b/test/include/core_no_nullary.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_nothing.cpp b/test/include/core_nothing.cpp new file mode 100644 index 0000000..10033d1 --- /dev/null +++ b/test/include/core_nothing.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_reference.cpp b/test/include/core_reference.cpp new file mode 100644 index 0000000..0977bc2 --- /dev/null +++ b/test/include/core_reference.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/core_value.cpp b/test/include/core_value.cpp new file mode 100644 index 0000000..3d8b564 --- /dev/null +++ b/test/include/core_value.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/debug_dump_env.cpp b/test/include/debug_dump_env.cpp new file mode 100644 index 0000000..605b386 --- /dev/null +++ b/test/include/debug_dump_env.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/function.cpp b/test/include/function.cpp new file mode 100644 index 0000000..01f397b --- /dev/null +++ b/test/include/function.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/function_detail_function_operator.cpp b/test/include/function_detail_function_operator.cpp new file mode 100644 index 0000000..bf5b3f7 --- /dev/null +++ b/test/include/function_detail_function_operator.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/function_detail_function_result_of.cpp b/test/include/function_detail_function_result_of.cpp new file mode 100644 index 0000000..b8740ce --- /dev/null +++ b/test/include/function_detail_function_result_of.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/function_function.cpp b/test/include/function_function.cpp new file mode 100644 index 0000000..58ba8dd --- /dev/null +++ b/test/include/function_function.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/fusion.cpp b/test/include/fusion.cpp new file mode 100644 index 0000000..49cdbb3 --- /dev/null +++ b/test/include/fusion.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/fusion_at.cpp b/test/include/fusion_at.cpp new file mode 100644 index 0000000..b35d308 --- /dev/null +++ b/test/include/fusion_at.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/object.cpp b/test/include/object.cpp new file mode 100644 index 0000000..15e2b40 --- /dev/null +++ b/test/include/object.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/object_const_cast.cpp b/test/include/object_const_cast.cpp new file mode 100644 index 0000000..d78a5fe --- /dev/null +++ b/test/include/object_const_cast.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/object_construct.cpp b/test/include/object_construct.cpp new file mode 100644 index 0000000..c6bf68e --- /dev/null +++ b/test/include/object_construct.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/object_delete.cpp b/test/include/object_delete.cpp new file mode 100644 index 0000000..e785e98 --- /dev/null +++ b/test/include/object_delete.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/object_detail_construct.cpp b/test/include/object_detail_construct.cpp new file mode 100644 index 0000000..5295ef6 --- /dev/null +++ b/test/include/object_detail_construct.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/object_detail_construct_eval.cpp b/test/include/object_detail_construct_eval.cpp new file mode 100644 index 0000000..60cabdf --- /dev/null +++ b/test/include/object_detail_construct_eval.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/object_detail_new.cpp b/test/include/object_detail_new.cpp new file mode 100644 index 0000000..3fe70bc --- /dev/null +++ b/test/include/object_detail_new.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/object_detail_new_eval.cpp b/test/include/object_detail_new_eval.cpp new file mode 100644 index 0000000..e165644 --- /dev/null +++ b/test/include/object_detail_new_eval.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/object_dynamic_cast.cpp b/test/include/object_dynamic_cast.cpp new file mode 100644 index 0000000..b6f3417 --- /dev/null +++ b/test/include/object_dynamic_cast.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/object_new.cpp b/test/include/object_new.cpp new file mode 100644 index 0000000..0ff2544 --- /dev/null +++ b/test/include/object_new.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/object_reinterpret_cast.cpp b/test/include/object_reinterpret_cast.cpp new file mode 100644 index 0000000..c4749a5 --- /dev/null +++ b/test/include/object_reinterpret_cast.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/object_static_cast.cpp b/test/include/object_static_cast.cpp new file mode 100644 index 0000000..cf666cf --- /dev/null +++ b/test/include/object_static_cast.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/operator.cpp b/test/include/operator.cpp new file mode 100644 index 0000000..9ac7cfd --- /dev/null +++ b/test/include/operator.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/operator_if_else.cpp b/test/include/operator_if_else.cpp new file mode 100644 index 0000000..93a81c3 --- /dev/null +++ b/test/include/operator_if_else.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/operator_io.cpp b/test/include/operator_io.cpp new file mode 100644 index 0000000..5ac5027 --- /dev/null +++ b/test/include/operator_io.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/operator_member.cpp b/test/include/operator_member.cpp new file mode 100644 index 0000000..7f9181f --- /dev/null +++ b/test/include/operator_member.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/operator_operator.cpp b/test/include/operator_operator.cpp new file mode 100644 index 0000000..eefeb8b --- /dev/null +++ b/test/include/operator_operator.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/scope.cpp b/test/include/scope.cpp new file mode 100644 index 0000000..044895b --- /dev/null +++ b/test/include/scope.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/scope_detail_dynamic.cpp b/test/include/scope_detail_dynamic.cpp new file mode 100644 index 0000000..557c158 --- /dev/null +++ b/test/include/scope_detail_dynamic.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/scope_detail_local_gen.cpp b/test/include/scope_detail_local_gen.cpp new file mode 100644 index 0000000..e56f180 --- /dev/null +++ b/test/include/scope_detail_local_gen.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/scope_detail_local_variable.cpp b/test/include/scope_detail_local_variable.cpp new file mode 100644 index 0000000..b4e8cfe --- /dev/null +++ b/test/include/scope_detail_local_variable.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/scope_dynamic.cpp b/test/include/scope_dynamic.cpp new file mode 100644 index 0000000..3e68b6d --- /dev/null +++ b/test/include/scope_dynamic.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/scope_lambda.cpp b/test/include/scope_lambda.cpp new file mode 100644 index 0000000..4afb8ad --- /dev/null +++ b/test/include/scope_lambda.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/scope_let.cpp b/test/include/scope_let.cpp new file mode 100644 index 0000000..77b831e --- /dev/null +++ b/test/include/scope_let.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/scope_local_variable.cpp b/test/include/scope_local_variable.cpp new file mode 100644 index 0000000..41ed13b --- /dev/null +++ b/test/include/scope_local_variable.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/scope_scoped_environment.cpp b/test/include/scope_scoped_environment.cpp new file mode 100644 index 0000000..90132f7 --- /dev/null +++ b/test/include/scope_scoped_environment.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/statement.cpp b/test/include/statement.cpp new file mode 100644 index 0000000..001573b --- /dev/null +++ b/test/include/statement.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/statement_detail_switch.cpp b/test/include/statement_detail_switch.cpp new file mode 100644 index 0000000..9f0b3f9 --- /dev/null +++ b/test/include/statement_detail_switch.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/statement_do_while.cpp b/test/include/statement_do_while.cpp new file mode 100644 index 0000000..a7db472 --- /dev/null +++ b/test/include/statement_do_while.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/statement_for.cpp b/test/include/statement_for.cpp new file mode 100644 index 0000000..896abf6 --- /dev/null +++ b/test/include/statement_for.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/statement_if.cpp b/test/include/statement_if.cpp new file mode 100644 index 0000000..3f91755 --- /dev/null +++ b/test/include/statement_if.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/statement_switch.cpp b/test/include/statement_switch.cpp new file mode 100644 index 0000000..34579ff --- /dev/null +++ b/test/include/statement_switch.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/statement_throw.cpp b/test/include/statement_throw.cpp new file mode 100644 index 0000000..b701397 --- /dev/null +++ b/test/include/statement_throw.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/statement_try_catch.cpp b/test/include/statement_try_catch.cpp new file mode 100644 index 0000000..f5e5be2 --- /dev/null +++ b/test/include/statement_try_catch.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/statement_while.cpp b/test/include/statement_while.cpp new file mode 100644 index 0000000..0764d1b --- /dev/null +++ b/test/include/statement_while.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl.cpp b/test/include/stl.cpp new file mode 100644 index 0000000..5cda2bf --- /dev/null +++ b/test/include/stl.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm.cpp b/test/include/stl_algorithm.cpp new file mode 100644 index 0000000..8a3069a --- /dev/null +++ b/test/include/stl_algorithm.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_begin.cpp b/test/include/stl_algorithm_detail_begin.cpp new file mode 100644 index 0000000..c458753 --- /dev/null +++ b/test/include/stl_algorithm_detail_begin.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_decay_array.cpp b/test/include/stl_algorithm_detail_decay_array.cpp new file mode 100644 index 0000000..80084cd --- /dev/null +++ b/test/include/stl_algorithm_detail_decay_array.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_end.cpp b/test/include/stl_algorithm_detail_end.cpp new file mode 100644 index 0000000..9ec6518 --- /dev/null +++ b/test/include/stl_algorithm_detail_end.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_has_equal_range.cpp b/test/include/stl_algorithm_detail_has_equal_range.cpp new file mode 100644 index 0000000..b8df2ae --- /dev/null +++ b/test/include/stl_algorithm_detail_has_equal_range.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_has_find.cpp b/test/include/stl_algorithm_detail_has_find.cpp new file mode 100644 index 0000000..6f3f4e8 --- /dev/null +++ b/test/include/stl_algorithm_detail_has_find.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_has_lower_bound.cpp b/test/include/stl_algorithm_detail_has_lower_bound.cpp new file mode 100644 index 0000000..33b98e5 --- /dev/null +++ b/test/include/stl_algorithm_detail_has_lower_bound.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_has_remove.cpp b/test/include/stl_algorithm_detail_has_remove.cpp new file mode 100644 index 0000000..7aac7d0 --- /dev/null +++ b/test/include/stl_algorithm_detail_has_remove.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_has_remove_if.cpp b/test/include/stl_algorithm_detail_has_remove_if.cpp new file mode 100644 index 0000000..1584cdb --- /dev/null +++ b/test/include/stl_algorithm_detail_has_remove_if.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_has_reverse.cpp b/test/include/stl_algorithm_detail_has_reverse.cpp new file mode 100644 index 0000000..4ac0235 --- /dev/null +++ b/test/include/stl_algorithm_detail_has_reverse.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_has_sort.cpp b/test/include/stl_algorithm_detail_has_sort.cpp new file mode 100644 index 0000000..30a5698 --- /dev/null +++ b/test/include/stl_algorithm_detail_has_sort.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_has_unique.cpp b/test/include/stl_algorithm_detail_has_unique.cpp new file mode 100644 index 0000000..46b236a --- /dev/null +++ b/test/include/stl_algorithm_detail_has_unique.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_has_upper_bound.cpp b/test/include/stl_algorithm_detail_has_upper_bound.cpp new file mode 100644 index 0000000..5d9213f --- /dev/null +++ b/test/include/stl_algorithm_detail_has_upper_bound.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_is_std_hash_map.cpp b/test/include/stl_algorithm_detail_is_std_hash_map.cpp new file mode 100644 index 0000000..eecc589 --- /dev/null +++ b/test/include/stl_algorithm_detail_is_std_hash_map.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_is_std_hash_set.cpp b/test/include/stl_algorithm_detail_is_std_hash_set.cpp new file mode 100644 index 0000000..5edd888 --- /dev/null +++ b/test/include/stl_algorithm_detail_is_std_hash_set.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_is_std_list.cpp b/test/include/stl_algorithm_detail_is_std_list.cpp new file mode 100644 index 0000000..60ee143 --- /dev/null +++ b/test/include/stl_algorithm_detail_is_std_list.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_is_std_map.cpp b/test/include/stl_algorithm_detail_is_std_map.cpp new file mode 100644 index 0000000..995ca9b --- /dev/null +++ b/test/include/stl_algorithm_detail_is_std_map.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_is_std_set.cpp b/test/include/stl_algorithm_detail_is_std_set.cpp new file mode 100644 index 0000000..b5a27b7 --- /dev/null +++ b/test/include/stl_algorithm_detail_is_std_set.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_std_hash_map_fwd.cpp b/test/include/stl_algorithm_detail_std_hash_map_fwd.cpp new file mode 100644 index 0000000..7f265ee --- /dev/null +++ b/test/include/stl_algorithm_detail_std_hash_map_fwd.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_detail_std_hash_set_fwd.cpp b/test/include/stl_algorithm_detail_std_hash_set_fwd.cpp new file mode 100644 index 0000000..b72f00d --- /dev/null +++ b/test/include/stl_algorithm_detail_std_hash_set_fwd.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_iteration.cpp b/test/include/stl_algorithm_iteration.cpp new file mode 100644 index 0000000..ff4ca2a --- /dev/null +++ b/test/include/stl_algorithm_iteration.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_querying.cpp b/test/include/stl_algorithm_querying.cpp new file mode 100644 index 0000000..1633e2f --- /dev/null +++ b/test/include/stl_algorithm_querying.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_algorithm_transformation.cpp b/test/include/stl_algorithm_transformation.cpp new file mode 100644 index 0000000..4febf3b --- /dev/null +++ b/test/include/stl_algorithm_transformation.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_container.cpp b/test/include/stl_container.cpp new file mode 100644 index 0000000..3f9dfbc --- /dev/null +++ b/test/include/stl_container.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_container_container.cpp b/test/include/stl_container_container.cpp new file mode 100644 index 0000000..79ed93c --- /dev/null +++ b/test/include/stl_container_container.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/stl_container_detail_container.cpp b/test/include/stl_container_detail_container.cpp new file mode 100644 index 0000000..981030f --- /dev/null +++ b/test/include/stl_container_detail_container.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/support_detail_iterate.cpp b/test/include/support_detail_iterate.cpp new file mode 100644 index 0000000..f60a85f --- /dev/null +++ b/test/include/support_detail_iterate.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/support_detail_iterate_define.cpp b/test/include/support_detail_iterate_define.cpp new file mode 100644 index 0000000..b000fc4 --- /dev/null +++ b/test/include/support_detail_iterate_define.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/support_detail_iterate_undef.cpp b/test/include/support_detail_iterate_undef.cpp new file mode 100644 index 0000000..cd3f0d1 --- /dev/null +++ b/test/include/support_detail_iterate_undef.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/support_element_at.cpp b/test/include/support_element_at.cpp new file mode 100644 index 0000000..7a08bf9 --- /dev/null +++ b/test/include/support_element_at.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/support_iterate.cpp b/test/include/support_iterate.cpp new file mode 100644 index 0000000..47095f5 --- /dev/null +++ b/test/include/support_iterate.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {} diff --git a/test/include/version.cpp b/test/include/version.cpp new file mode 100644 index 0000000..b609a02 --- /dev/null +++ b/test/include/version.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2010 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) +==============================================================================*/ + +//Check if files are includable without errors +#include + +int main() {}