diff options
author | 2019-09-21 22:14:56 +0200 | |
---|---|---|
committer | 2019-09-21 22:15:34 +0200 | |
commit | 8734df72ea0b69f6b327f2a088291498b8cb0517 (patch) | |
tree | a5d16c9e16688cb04d9887b2584ec251248082a4 /src/lib/netlist/plib/poptions.cpp | |
parent | aead1f98f422ad1ace6f667223a198115f190949 (diff) |
netlist code maintenance (nw)
- prepare move to c++ streams and later std::string
- fix more lint and clang pedantic warnings/errors
- fix some bugs
Diffstat (limited to 'src/lib/netlist/plib/poptions.cpp')
-rw-r--r-- | src/lib/netlist/plib/poptions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/netlist/plib/poptions.cpp b/src/lib/netlist/plib/poptions.cpp index 416b79e39d3..fa9a343815e 100644 --- a/src/lib/netlist/plib/poptions.cpp +++ b/src/lib/netlist/plib/poptions.cpp @@ -118,7 +118,7 @@ namespace plib { if (has_equal_arg) { for (std::size_t j = 1; j < v.size() - 1; j++) - opt_arg = opt_arg + v[j] + "="; + opt_arg += (v[j] + "="); opt_arg += v[v.size()-1]; } } |