Skip to content
Snippets Groups Projects
Commit 3f4289c2 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

COMP: scalarRanges construct null for gcc-48

parent 919fa3a5
Branches
Tags
No related merge requests found
......@@ -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
......
......@@ -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))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment