diff options
author | 2017-02-27 23:47:48 +0100 | |
---|---|---|
committer | 2017-03-05 16:19:59 +0100 | |
commit | 3c49610274fa08a8fe008d0e8fd997f4c7470d5a (patch) | |
tree | 156d9dfbe1d101a08911f85b2956293968c7eea7 /src/lib/netlist/plib/poptions.h | |
parent | c933d239f5e9239aee851f119f9b87abeae1b17d (diff) |
More cppcheck fixes. (nw)
Diffstat (limited to 'src/lib/netlist/plib/poptions.h')
-rw-r--r-- | src/lib/netlist/plib/poptions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/netlist/plib/poptions.h b/src/lib/netlist/plib/poptions.h index 6f80938167f..491ac0b4d91 100644 --- a/src/lib/netlist/plib/poptions.h +++ b/src/lib/netlist/plib/poptions.h @@ -107,8 +107,8 @@ class option_str_limit : public option public: option_str_limit(options &parent, pstring ashort, pstring along, pstring defval, pstring limit, pstring help) : option(parent, ashort, along, help, true), m_val(defval) + , m_limit(plib::psplit(limit, ":")) { - m_limit = plib::psplit(limit, ":"); } pstring operator ()() { return m_val; } |