Skip to content

Commit

Permalink
Swap include guards to #ifndef (#271)
Browse files Browse the repository at this point in the history
Compilers implement a multiple-include optimization where they avoid
preprocessing an included file if it is "properly guarded". Compilers
differ as to what constitutes a "properly guarded" file. In particular,
Microsoft Visual Studio does not recognize `#if !defined(GUARD)` for
the optimization. This does not affect the correctness of using Fusion
on Microsoft Visual Studio, but it will increase the time taken to build
any project on this compiler.

This commit changes all include guards to use `#ifndef`, but leaves all
other `#if !defined` preprocessor directives that are not related to
guarding a file.

Co-authored-by: IncludeGuardian <[email protected]>
  • Loading branch information
IncludeGuardian and IncludeGuardian authored Feb 25, 2024
1 parent 7d4c03f commit ce8b031
Show file tree
Hide file tree
Showing 682 changed files with 682 additions and 682 deletions.
2 changes: 1 addition & 1 deletion example/extension/detail/advance_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_ADVANCE_IMPL_20060222_2150)
#ifndef BOOST_FUSION_ADVANCE_IMPL_20060222_2150
#define BOOST_FUSION_ADVANCE_IMPL_20060222_2150

namespace example
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/at_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_AT_IMPL_20060223_2017)
#ifndef BOOST_FUSION_AT_IMPL_20060223_2017
#define BOOST_FUSION_AT_IMPL_20060223_2017

#include <string>
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/at_key_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_AT_KEY_IMPL_20060223_2017)
#ifndef BOOST_FUSION_AT_KEY_IMPL_20060223_2017
#define BOOST_FUSION_AT_KEY_IMPL_20060223_2017

#include <string>
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/begin_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_BEGIN_IMPL_20060222_2042)
#ifndef BOOST_FUSION_BEGIN_IMPL_20060222_2042
#define BOOST_FUSION_BEGIN_IMPL_20060222_2042

#include "../example_struct_iterator.hpp"
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/category_of_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_CATEGORY_OF_IMPL_20060223_2037)
#ifndef BOOST_FUSION_CATEGORY_OF_IMPL_20060223_2037
#define BOOST_FUSION_CATEGORY_OF_IMPL_20060223_2037

#include <boost/fusion/support/category_of.hpp>
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/deref_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_DEREF_IMPL_20060222_1952)
#ifndef BOOST_FUSION_DEREF_IMPL_20060222_1952
#define BOOST_FUSION_DEREF_IMPL_20060222_1952

#include <boost/static_assert.hpp>
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/distance_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_DISTANCE_IMPL_20060223_0814)
#ifndef BOOST_FUSION_DISTANCE_IMPL_20060223_0814
#define BOOST_FUSION_DISTANCE_IMPL_20060223_0814

#include <boost/mpl/minus.hpp>
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/end_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_END_IMPL_20060222_2042)
#ifndef BOOST_FUSION_END_IMPL_20060222_2042
#define BOOST_FUSION_END_IMPL_20060222_2042

#include "../example_struct_iterator.hpp"
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/equal_to_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_EQUAL_TO_IMPL_20060223_1941)
#ifndef BOOST_FUSION_EQUAL_TO_IMPL_20060223_1941
#define BOOST_FUSION_EQUAL_TO_IMPL_20060223_1941

#include <boost/mpl/equal_to.hpp>
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/has_key_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_HAS_KEY_IMPL_20060223_2156)
#ifndef BOOST_FUSION_HAS_KEY_IMPL_20060223_2156
#define BOOST_FUSION_HAS_KEY_IMPL_20060223_2156

#include <boost/type_traits/is_same.hpp>
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/is_sequence_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_IS_SEQUENCE_IMPL_20060228_1946)
#ifndef BOOST_FUSION_IS_SEQUENCE_IMPL_20060228_1946
#define BOOST_FUSION_IS_SEQUENCE_IMPL_20060228_1946

#include <boost/mpl/bool.hpp>
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/is_view_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_IS_VIEW_IMPL_200604227_2150)
#ifndef BOOST_FUSION_IS_VIEW_IMPL_200604227_2150
#define BOOST_FUSION_IS_VIEW_IMPL_200604227_2150

#include <boost/mpl/bool.hpp>
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/next_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_NEXT_IMPL_20060222_1859)
#ifndef BOOST_FUSION_NEXT_IMPL_20060222_1859
#define BOOST_FUSION_NEXT_IMPL_20060222_1859

namespace example
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/prior_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_PRIOR_IMPL_20060222_1944)
#ifndef BOOST_FUSION_PRIOR_IMPL_20060222_1944
#define BOOST_FUSION_PRIOR_IMPL_20060222_1944

namespace example
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/size_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_SIZE_IMPL_20060223_2033)
#ifndef BOOST_FUSION_SIZE_IMPL_20060223_2033
#define BOOST_FUSION_SIZE_IMPL_20060223_2033

#include <boost/mpl/int.hpp>
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/value_at_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_VALUE_AT_IMPL_20060223_2025)
#ifndef BOOST_FUSION_VALUE_AT_IMPL_20060223_2025
#define BOOST_FUSION_VALUE_AT_IMPL_20060223_2025

namespace example
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/value_at_key_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_VALUE_AT_KEY_IMPL_20060223_2025)
#ifndef BOOST_FUSION_VALUE_AT_KEY_IMPL_20060223_2025
#define BOOST_FUSION_VALUE_AT_KEY_IMPL_20060223_2025

namespace fields
Expand Down
2 changes: 1 addition & 1 deletion example/extension/detail/value_of_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_VALUE_OF_IMPL_20060223_1905)
#ifndef BOOST_FUSION_VALUE_OF_IMPL_20060223_1905
#define BOOST_FUSION_VALUE_OF_IMPL_20060223_1905

#include <string>
Expand Down
2 changes: 1 addition & 1 deletion example/extension/example_struct.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_EXAMPLE_STRUCT)
#ifndef BOOST_FUSION_EXAMPLE_STRUCT
#define BOOST_FUSION_EXAMPLE_STRUCT

#include "./tag_of.hpp"
Expand Down
2 changes: 1 addition & 1 deletion example/extension/example_struct_iterator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_EXAMPLE_STRUCT_ITERATOR)
#ifndef BOOST_FUSION_EXAMPLE_STRUCT_ITERATOR
#define BOOST_FUSION_EXAMPLE_STRUCT_ITERATOR

#include <boost/fusion/support/iterator_base.hpp>
Expand Down
2 changes: 1 addition & 1 deletion example/extension/example_struct_type.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_EXAMPLE_STRUCT_TYPE)
#ifndef BOOST_FUSION_EXAMPLE_STRUCT_TYPE
#define BOOST_FUSION_EXAMPLE_STRUCT_TYPE

#include <string>
Expand Down
2 changes: 1 addition & 1 deletion example/extension/tag_of.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_TAG_OF_20060222_2052)
#ifndef BOOST_FUSION_TAG_OF_20060222_2052
#define BOOST_FUSION_TAG_OF_20060222_2052

#include <boost/fusion/support/tag_of_fwd.hpp>
Expand Down
2 changes: 1 addition & 1 deletion include/boost/fusion/adapted.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_ADAPTED_30122005_1420)
#ifndef BOOST_FUSION_ADAPTED_30122005_1420
#define BOOST_FUSION_ADAPTED_30122005_1420

#include <boost/fusion/support/config.hpp>
Expand Down
2 changes: 1 addition & 1 deletion include/boost/fusion/adapted/array.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_ARRAY_27122005_1035)
#ifndef BOOST_FUSION_ARRAY_27122005_1035
#define BOOST_FUSION_ARRAY_27122005_1035

//For backwards compatibility
Expand Down
2 changes: 1 addition & 1 deletion include/boost/fusion/adapted/boost_array.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_BOOST_ARRAY_27122005_1035)
#ifndef BOOST_FUSION_BOOST_ARRAY_27122005_1035
#define BOOST_FUSION_BOOST_ARRAY_27122005_1035

#include <boost/fusion/support/config.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_ARRAY_ITERATOR_26122005_2250)
#ifndef BOOST_FUSION_ARRAY_ITERATOR_26122005_2250
#define BOOST_FUSION_ARRAY_ITERATOR_26122005_2250

#include <boost/fusion/support/config.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_AT_IMPL_27122005_1241)
#ifndef BOOST_FUSION_AT_IMPL_27122005_1241
#define BOOST_FUSION_AT_IMPL_27122005_1241

#include <boost/fusion/support/config.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_BEGIN_IMPL_27122005_1117)
#ifndef BOOST_FUSION_BEGIN_IMPL_27122005_1117
#define BOOST_FUSION_BEGIN_IMPL_27122005_1117

#include <boost/fusion/support/config.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_CATEGORY_OF_IMPL_27122005_1044)
#ifndef BOOST_FUSION_CATEGORY_OF_IMPL_27122005_1044
#define BOOST_FUSION_CATEGORY_OF_IMPL_27122005_1044

#include <boost/fusion/support/config.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_END_IMPL_27122005_1120)
#ifndef BOOST_FUSION_END_IMPL_27122005_1120
#define BOOST_FUSION_END_IMPL_27122005_1120

#include <boost/fusion/support/config.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_IS_SEQUENCE_IMPL_27122005_1648)
#ifndef BOOST_FUSION_IS_SEQUENCE_IMPL_27122005_1648
#define BOOST_FUSION_IS_SEQUENCE_IMPL_27122005_1648

#include <boost/fusion/support/config.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_IS_VIEW_IMPL_27042006_2221)
#ifndef BOOST_FUSION_IS_VIEW_IMPL_27042006_2221
#define BOOST_FUSION_IS_VIEW_IMPL_27042006_2221

#include <boost/fusion/support/config.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_SIZE_IMPL_27122005_1251)
#ifndef BOOST_FUSION_SIZE_IMPL_27122005_1251
#define BOOST_FUSION_SIZE_IMPL_27122005_1251

namespace boost { namespace fusion {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_VALUE_AT_IMPL_27122005_1256)
#ifndef BOOST_FUSION_VALUE_AT_IMPL_27122005_1256
#define BOOST_FUSION_VALUE_AT_IMPL_27122005_1256

namespace boost { namespace fusion {
Expand Down
2 changes: 1 addition & 1 deletion include/boost/fusion/adapted/boost_array/tag_of.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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)
==============================================================================*/
#if !defined(FUSION_SEQUENCE_TAG_OF_27122005_1030)
#ifndef FUSION_SEQUENCE_TAG_OF_27122005_1030
#define FUSION_SEQUENCE_TAG_OF_27122005_1030

#include <boost/fusion/support/config.hpp>
Expand Down
2 changes: 1 addition & 1 deletion include/boost/fusion/adapted/boost_tuple.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_BOOST_TUPLE_09272006_0732)
#ifndef BOOST_FUSION_BOOST_TUPLE_09272006_0732
#define BOOST_FUSION_BOOST_TUPLE_09272006_0732

#include <boost/fusion/support/config.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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)
==============================================================================*/
#if !defined(FUSION_BOOST_TUPLE_ITERATOR_09262006_1851)
#ifndef FUSION_BOOST_TUPLE_ITERATOR_09262006_1851
#define FUSION_BOOST_TUPLE_ITERATOR_09262006_1851

#include <boost/fusion/support/config.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_AT_IMPL_09262006_1920)
#ifndef BOOST_FUSION_AT_IMPL_09262006_1920
#define BOOST_FUSION_AT_IMPL_09262006_1920

#include <boost/fusion/support/config.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_BEGIN_IMPL_09272006_0719)
#ifndef BOOST_FUSION_BEGIN_IMPL_09272006_0719
#define BOOST_FUSION_BEGIN_IMPL_09272006_0719

#include <boost/fusion/support/config.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_BUILD_CONS_10172012_0130)
#ifndef BOOST_FUSION_BUILD_CONS_10172012_0130
#define BOOST_FUSION_BUILD_CONS_10172012_0130

#include <boost/tuple/tuple.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_CATEGORY_OF_IMPL_09272006_0726)
#ifndef BOOST_FUSION_CATEGORY_OF_IMPL_09272006_0726
#define BOOST_FUSION_CATEGORY_OF_IMPL_09272006_0726

namespace boost { namespace fusion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_CONVERT_IMPL_10172012_0120)
#ifndef BOOST_FUSION_CONVERT_IMPL_10172012_0120
#define BOOST_FUSION_CONVERT_IMPL_10172012_0120

#include <boost/tuple/tuple.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_END_IMPL_09272006_0721)
#ifndef BOOST_FUSION_END_IMPL_09272006_0721
#define BOOST_FUSION_END_IMPL_09272006_0721

#include <boost/fusion/support/config.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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)
==============================================================================*/
#if !defined(BOOST_FUSION_IS_SEQUENCE_IMPL_09272006_0726)
#ifndef BOOST_FUSION_IS_SEQUENCE_IMPL_09272006_0726
#define BOOST_FUSION_IS_SEQUENCE_IMPL_09272006_0726

#include <boost/fusion/support/config.hpp>
Expand Down
Loading

0 comments on commit ce8b031

Please sign in to comment.