openfoam/src/OpenFOAM/primitives/compat/wordReListMatcher.H
Mark Olesen ecaa55295b ENH: add dimensionedLabel typedef
GIT: primitives/compat with compatibility includes
GIT: primitives/traits with pTraits, contiguous, zero, one etc.

COMP: relocate base equal(a,b) definition from scalar.H -> label.H
- make more universally available

STYLE: replace occasional use of notEqual(a,b) with !equal(a,b)
2023-01-23 11:38:54 +01:00

24 lines
554 B
C++

// Compatibility include. For v1612 and earlier.
#ifndef FoamCompat_wordReListMatcher_H
#define FoamCompat_wordReListMatcher_H
#include "wordRes.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
//- Superseded (MAY-2017) by Foam::wordRes
// \deprecated(2017-05) - use Foam::wordRes instead
typedef wordRes wordReListMatcher;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //