From 83ee263f7d22bac64b69d6e1e576c6b447f2da5b Mon Sep 17 00:00:00 2001 From: Julien Schueller Date: Thu, 4 Jul 2024 14:33:16 +0200 Subject: [PATCH] cond --- src/detail/gte_getter.cpp | 2 ++ src/island.cpp | 4 ++++ 2 files changed, 6 insertions(+) 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 {