Skip to content
Snippets Groups Projects
Commit d36fe5eb authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

removed static_assert in VtkTimeseriesWriter due to problems with clang

parent 7cf321a2
No related branches found
No related tags found
No related merge requests found
......@@ -27,11 +27,11 @@ namespace Dune
template <class W>
using HasWriteTimeseriesSerialFile = decltype(&W::writeTimeseriesSerialFile);
static_assert(Std::is_detected<HasWriteTimeseriesSerialFile, VtkWriter>::value, "");
// static_assert(Std::is_detected<HasWriteTimeseriesSerialFile, VtkWriter>::value, "");
template <class W>
using HasWriteTimeseriesParallelFile = decltype(&W::writeTimeseriesParallelFile);
static_assert(Std::is_detected<HasWriteTimeseriesParallelFile, VtkWriter>::value, "");
// static_assert(Std::is_detected<HasWriteTimeseriesParallelFile, VtkWriter>::value, "");
public:
/// Constructor, stores the gridView
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment