Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
3f4289c2
Commit
3f4289c2
authored
Dec 17, 2018
by
Mark OLESEN
Browse files
COMP: scalarRanges construct null for gcc-48
parent
919fa3a5
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/OpenFOAM/primitives/ranges/scalarRange/scalarRanges.H
View file @
3f4289c2
...
...
@@ -61,6 +61,9 @@ public:
//- Inherit constructors from List of scalarRange
using
List
<
scalarRange
>::
List
;
//- Construct null
inline
scalarRanges
();
//- Construct by parsing string for scalar ranges
// The individual items are space, comma or semicolon delimited.
// Optionally report when any range failed to parse
...
...
src/OpenFOAM/primitives/ranges/scalarRange/scalarRangesI.H
View file @
3f4289c2
...
...
@@ -25,6 +25,12 @@ License
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
inline
Foam
::
scalarRanges
::
scalarRanges
()
:
List
<
scalarRange
>
()
{}
inline
Foam
::
scalarRanges
::
scalarRanges
(
const
std
::
string
&
str
,
bool
verbose
)
:
List
<
scalarRange
>
(
scalarRanges
::
parse
(
str
,
verbose
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment