mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-11 21:50:34 +05:00
Fix Windows debug build
This commit is contained in:
parent
260fd39da5
commit
2d97eeaa77
@ -476,7 +476,7 @@ namespace netgen
|
|||||||
{
|
{
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
if (typ != QUAD && typ != QUAD6 && typ != QUAD8)
|
if (typ != QUAD && typ != QUAD6 && typ != QUAD8)
|
||||||
PrintSysError ("element2d::GetNV not implemented for typ", typ);
|
PrintSysError ("element2d::GetNV not implemented for typ", int(typ));
|
||||||
#endif
|
#endif
|
||||||
return 4;
|
return 4;
|
||||||
}
|
}
|
||||||
@ -778,7 +778,7 @@ namespace netgen
|
|||||||
return 8;
|
return 8;
|
||||||
default: // not a 3D element
|
default: // not a 3D element
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
PrintSysError ("Element3d::GetNV not implemented for typ ", typ);
|
PrintSysError ("Element3d::GetNV not implemented for typ ", int(typ));
|
||||||
#endif
|
#endif
|
||||||
__assume(false);
|
__assume(false);
|
||||||
return -1;
|
return -1;
|
||||||
@ -862,7 +862,7 @@ namespace netgen
|
|||||||
return 6;
|
return 6;
|
||||||
default:
|
default:
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
PrintSysError ("element3d::GetNFaces not implemented for typ", typ)
|
PrintSysError ("element3d::GetNFaces not implemented for typ", int(typ))
|
||||||
#endif
|
#endif
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user