mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
TUT: incorrect regex escaping in fvSchemes
- error trapped by C++11 regex
This commit is contained in:
committed by
Andrew Heather
parent
be3efed44b
commit
db0678bf0e
@ -14,6 +14,10 @@
|
||||
( false "(U|k|epsilon)" "alpha" )
|
||||
( true "ab.*" "abc" )
|
||||
( true ".*" "abc" )
|
||||
|
||||
( true "div\(phi,alpha.*)" "div(phi,alpha.gas)" ) // quoting error
|
||||
( true "div\(phi,alpha.*\)" "div(phi,alpha.gas)" )
|
||||
( true "div\(phi,alpha\..*\)" "div(phi,alpha.gas)" )
|
||||
)
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
Reference in New Issue
Block a user