Updated notImplemented -> NotImplemented

The new NotImplemented macro uses __PRETTY_FUNCTION__ for GNU compatible
compilers otherwise __func__ to provide the function name string.
This commit is contained in:
Henry Weller
2015-11-01 10:26:37 +00:00
parent ef07a81610
commit 42fb1b9e8e
146 changed files with 331 additions and 967 deletions

View File

@ -792,13 +792,7 @@ bool Foam::DistributedDelaunayMesh<Triangulation>::distribute
const boundBox& bb
)
{
notImplemented
(
"Foam::DistributedDelaunayMesh<Triangulation>::distribute"
"("
" const boundBox& bb"
")"
);
NotImplemented;
if (!Pstream::parRun())
{

View File

@ -100,7 +100,7 @@ public:
//- Clone
virtual autoPtr<searchableSurfaceFeatures> clone() const
{
notImplemented("autoPtr<searchableSurfaceFeatures> clone() const");
NotImplemented;
return autoPtr<searchableSurfaceFeatures>(NULL);
}