mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
wordRe: Corrected comments
Resolves bug-report https://bugs.openfoam.org/view.php?id=2771
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -96,8 +96,8 @@ public:
|
|||||||
enum compOption
|
enum compOption
|
||||||
{
|
{
|
||||||
LITERAL = 0, //!< treat as a string literal
|
LITERAL = 0, //!< treat as a string literal
|
||||||
DETECT = 1, //!< treat as regular expression
|
DETECT = 1, //!< detect if the string contains meta-characters
|
||||||
REGEXP = 2, //!< detect if the string contains meta-characters
|
REGEXP = 2, //!< treat as regular expression
|
||||||
NOCASE = 4, //!< ignore case in regular expression
|
NOCASE = 4, //!< ignore case in regular expression
|
||||||
DETECT_NOCASE = DETECT | NOCASE,
|
DETECT_NOCASE = DETECT | NOCASE,
|
||||||
REGEXP_NOCASE = REGEXP | NOCASE
|
REGEXP_NOCASE = REGEXP | NOCASE
|
||||||
|
|||||||
Reference in New Issue
Block a user