Skip to content
Snippets Groups Projects
Commit e39f9fe4 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Remove development warning

parent d4a0b910
No related branches found
No related tags found
1 merge request!205High-order polynomial reconstruction
......@@ -68,11 +68,9 @@ class StencilBuilder
friend class StencilManager;
public:
#warning REMAKE THIS FUNCTION PRIVATE
template <ItemType source_item_type, ItemType target_item_type>
StencilArray<source_item_type, target_item_type>
build(const IConnectivity& connectivity,
_build(const IConnectivity& connectivity,
const StencilDescriptor& stencil_descriptor,
const BoundaryDescriptorList& symmetry_boundary_descriptor_list) const
{
......
......@@ -49,7 +49,7 @@ StencilManager::_getStencilArray(
Key{connectivity.id(), stencil_descriptor, symmetry_boundary_descriptor_list})) {
stored_source_to_target_stencil_map[Key{connectivity.id(), stencil_descriptor, symmetry_boundary_descriptor_list}] =
std::make_shared<StencilArray<source_item_type, target_item_type>>(
StencilBuilder{}.template build<source_item_type, target_item_type>(connectivity, stencil_descriptor,
StencilBuilder{}.template _build<source_item_type, target_item_type>(connectivity, stencil_descriptor,
symmetry_boundary_descriptor_list));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment