Changed the runtime-selection tables to output a sorted toc.

This commit is contained in:
henry
2009-08-06 18:01:28 +01:00
parent 7297ae0e23
commit 31c76da40f
119 changed files with 158 additions and 158 deletions

View File

@ -430,7 +430,7 @@ Foam::autoPtr<Foam::sampledSet> Foam::sampledSet::New
) << "Unknown sample type " << sampleType
<< endl << endl
<< "Valid sample types : " << endl
<< wordConstructorTablePtr_->toc()
<< wordConstructorTablePtr_->sortedToc()
<< exit(FatalError);
}

View File

@ -49,7 +49,7 @@ Foam::autoPtr<Foam::writer<Type> > Foam::writer<Type>::New
) << "Unknown write type " << writeType
<< endl << endl
<< "Valid write types : " << endl
<< wordConstructorTablePtr_->toc()
<< wordConstructorTablePtr_->sortedToc()
<< exit(FatalError);
}

View File

@ -141,7 +141,7 @@ Foam::sampledSurface::New
) << "Unknown sample type " << sampleType
<< endl << endl
<< "Valid sample types : " << endl
<< wordConstructorTablePtr_->toc()
<< wordConstructorTablePtr_->sortedToc()
<< exit(FatalError);
}

View File

@ -77,7 +77,7 @@ Foam::surfaceWriter<Type>::New(const word& writeType)
"surfaceWriter::New(const word&)"
) << "Unknown write type \"" << writeType << "\"\n\n"
<< "Valid write types : "
<< wordConstructorTablePtr_->toc() << nl
<< wordConstructorTablePtr_->sortedToc() << nl
<< "Valid proxy types : "
<< MeshedSurfaceProxy<face>::writeTypes() << endl
<< exit(FatalError);