mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: use of notImplemented()
This commit is contained in:
@ -315,18 +315,15 @@ bool Foam::KinematicParcel<ParcelType>::move(TrackData& td)
|
|||||||
|
|
||||||
case TrackData::tpRotationalTrack:
|
case TrackData::tpRotationalTrack:
|
||||||
{
|
{
|
||||||
Info<< "No rotational tracking implementation" << endl;
|
notImplemented("TrackData::tpRotationalTrack");
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
FatalErrorIn
|
FatalErrorIn("KinematicParcel<ParcelType>::move(TrackData& td)")
|
||||||
(
|
<< td.part() << " is an invalid part of the tracking method."
|
||||||
"KinematicParcel<ParcelType>::move(TrackData& td)"
|
|
||||||
) << td.part()
|
|
||||||
<< " is an invalid part of the tracking method."
|
|
||||||
<< abort(FatalError);
|
<< abort(FatalError);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user