mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-25 05:20:34 +05:00
Throw in case "op" enum value is invalid
This commit is contained in:
parent
54246e12ad
commit
e4a0733024
@ -194,6 +194,7 @@ namespace netgen
|
||||
case ROOT:
|
||||
return s1->PointInSolid (p, eps);
|
||||
}
|
||||
throw Exception("PointInSolid: invalid op");
|
||||
}
|
||||
|
||||
|
||||
@ -213,6 +214,7 @@ namespace netgen
|
||||
case ROOT:
|
||||
return s1->VecInSolid (p, v, eps);
|
||||
}
|
||||
throw Exception("VecInSolid: invalid op");
|
||||
}
|
||||
|
||||
// checks if lim s->0 lim t->0 p + t(v1 + s v2) in solid
|
||||
@ -233,6 +235,7 @@ namespace netgen
|
||||
case ROOT:
|
||||
return s1->VecInSolid2 (p, v1, v2, eps);
|
||||
}
|
||||
throw Exception("VecInSolid2: invalid op");
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user