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

Fix static_assert error message

parent 55011bb9
No related branches found
No related tags found
1 merge request!140Change referenced item list policy
......@@ -9,7 +9,7 @@ class [[nodiscard]] MeshLineFaceBoundary final
: public MeshFaceBoundary<Dimension> // clazy:exclude=copyable-polymorphic
{
public:
static_assert(Dimension == 2, "MeshFaceBoundary makes only sense in dimension 2");
static_assert(Dimension == 2, "MeshLineFaceBoundary makes only sense in dimension 2");
using Rd = TinyVector<Dimension, double>;
......
......@@ -9,7 +9,7 @@ class [[nodiscard]] MeshLineNodeBoundary final
: public MeshNodeBoundary<Dimension> // clazy:exclude=copyable-polymorphic
{
public:
static_assert(Dimension > 1, "MeshNodeBoundary makes only sense in dimension greater than 1");
static_assert(Dimension > 1, "MeshLineNodeBoundary makes only sense in dimension greater than 1");
using Rd = TinyVector<Dimension, double>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment