diff --git a/src/detail/gte_getter.cpp b/src/detail/gte_getter.cpp index b86ced38f..7dc9e6a1b 100644 --- a/src/detail/gte_getter.cpp +++ b/src/detail/gte_getter.cpp @@ -48,7 +48,9 @@ boost::any default_gte_getter() } // namespace +/// @cond std::function gte_getter = &default_gte_getter; +/// @endcond } // namespace detail diff --git a/src/island.cpp b/src/island.cpp index d5f6d6bf1..8887c68a8 100644 --- a/src/island.cpp +++ b/src/island.cpp @@ -159,7 +159,9 @@ boost::any default_wait_raii_getter() // NOTE: the default implementation just returns a defected boost::any, whose ctor and dtor // will have no effect. +/// @cond std::function wait_raii_getter = &default_wait_raii_getter; +/// @endcond namespace { @@ -184,8 +186,10 @@ void default_island_factory(const algorithm &algo, const population &pop, std::u } // namespace // Static init. +/// @cond std::function &)> island_factory = &default_island_factory; +/// @endcond namespace {