I tried commenting out functions and found out that the error persists with
only the following lines remaining in the file:
#include <deal.II/fe/fe_enriched.h>
#include <deal.II/fe/fe_tools.h>
#include <deal.II/base/std_cxx14/memory.h>
DEAL_II_NAMESPACE_OPEN
#include "fe_enriched.inst"
DEAL_II_NAMESPACE_CLOSE
I'm not sure if I can modify it using a different syntax. Could you please
advice on how I can proceed from here?
Good work so far. Since fe_enriched.cc is the only file that #includes
fe_enriched.h, what you can do now is to replace the line
#include <deal.II/fe/fe_enriched.h>
above by the content of the .h file. Then continue to remove things -- e.g.,
start by removing the template and inline functions that are currently at the
bottom of the .h file, then remove one declaration of a member
function/variable after the other, etc until you have gotten things to the
smallest content you can get it to. It should become clear which of the
template or inline functions, or =default or =delete functions the problem is,
and then we can start playing with modifying it as necessary.
Best
W.
--
------------------------------------------------------------------------
Wolfgang Bangerth email: bange...@colostate.edu
www: http://www.math.colostate.edu/~bangerth/
--
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see
https://groups.google.com/d/forum/dealii?hl=en
---
You received this message because you are subscribed to the Google Groups "deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to dealii+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.