Skip to content
Snippets Groups Projects
Commit 569e665d authored by Sankhesh Jhaveri's avatar Sankhesh Jhaveri :speech_balloon:
Browse files

COMP: Fix compile issues with GCC v10.1.0

parent 53903e47
No related branches found
No related tags found
No related merge requests found
......@@ -140,7 +140,7 @@ TetraTriangleMap::isValid() const
{
auto meshMaster = static_cast<TetrahedralMesh*>(m_master.get());
#if defined(DEBUG) || defined(_DEBUG) || !defined(NDEBUG)
CHECK(dynamic_cast<TetrahedralMesh*>(m_master.get())) << "Fail to cast from geometry to mesh";
CHECK(dynamic_cast < TetrahedralMesh * > (m_master.get()) == nullptr) << "Fail to cast from geometry to mesh";
#endif
auto totalElementsMaster = meshMaster->getNumTetrahedra();
......
......@@ -23,6 +23,7 @@
#include <atomic>
#include <functional>
#include <string>
#include <thread>
#include <unordered_map>
#include <vector>
......
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