From c8489b06074adda3cf46308c2f2215b70967c390 Mon Sep 17 00:00:00 2001 From: Daniel Arndt <6da@ornl.gov> Date: Tue, 18 Oct 2022 09:43:04 -0400 Subject: [PATCH] Fix a couple more --- include/deal.II/meshworker/integration_info.h | 5 ++++- source/differentiation/sd/symengine_scalar_operations.cc | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/include/deal.II/meshworker/integration_info.h b/include/deal.II/meshworker/integration_info.h index 035d261c08..ca194c786f 100644 --- a/include/deal.II/meshworker/integration_info.h +++ b/include/deal.II/meshworker/integration_info.h @@ -586,7 +586,7 @@ namespace MeshWorker , n_components(numbers::invalid_unsigned_int) {} - +#ifndef DOXYGEN template inline IntegrationInfo::IntegrationInfo( const IntegrationInfo &other) @@ -631,6 +631,7 @@ namespace MeshWorker Assert(false, ExcInternalError()); } } +#endif @@ -779,6 +780,7 @@ namespace MeshWorker } +#ifndef DOXYGEN template inline void IntegrationInfoBox::initialize(const FiniteElement &el, @@ -808,6 +810,7 @@ namespace MeshWorker neighbor.template initialize>( el, mapping, face_quadrature, neighbor_flags, block_info); } +#endif template diff --git a/source/differentiation/sd/symengine_scalar_operations.cc b/source/differentiation/sd/symengine_scalar_operations.cc index 645109c761..5110f5f9f5 100644 --- a/source/differentiation/sd/symengine_scalar_operations.cc +++ b/source/differentiation/sd/symengine_scalar_operations.cc @@ -44,6 +44,7 @@ namespace Differentiation } +# ifndef DOXYGEN Expression make_symbolic_function(const std::string & symbol, const SD::types::symbol_vector &arguments) @@ -59,6 +60,7 @@ namespace Differentiation return make_symbolic_function(symbol, SD::Utilities::extract_symbols(arguments)); } +# endif /* --------------------------- Differentiation ------------------------- */ -- 2.39.5