Skip to content
Snippets Groups Projects
Commit 4004e224 authored by Tom Fischer's avatar Tom Fischer
Browse files

[PL/BC] Improve err. msg. mentioning data type.

parent d6eb9feb
No related branches found
No related tags found
No related merge requests found
......@@ -44,8 +44,10 @@ void checkParametersOfDirichletBoundaryCondition(
{
OGS_FATAL(
"The required bulk node ids map does not exist in the boundary "
"mesh '{:s}'.",
bc_mesh.getName());
"mesh '{:s}' or has the wrong data type (should be equivalent to "
"C++ data type std::size_t which is an unsigned integer of size "
"{:d} or UInt64 in vtk terminology).",
bc_mesh.getName(), sizeof(std::size_t));
}
DBUG(
......
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