diff options
author | 2019-01-27 14:22:20 +1100 | |
---|---|---|
committer | 2019-01-27 14:22:20 +1100 | |
commit | 76323eb770cca3655f40d400fe5f34fbaa573d6c (patch) | |
tree | 9a2f8773d3b3e05755d24ecd2b4dba19afcd1374 /src/lib/netlist/plib/pparser.cpp | |
parent | 212f26f75973b840d400f4d57fe227a98de89981 (diff) |
srcclean and cleanup (nw)
Diffstat (limited to 'src/lib/netlist/plib/pparser.cpp')
-rw-r--r-- | src/lib/netlist/plib/pparser.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/netlist/plib/pparser.cpp b/src/lib/netlist/plib/pparser.cpp index 8cfc2b20cec..48e29570b4c 100644 --- a/src/lib/netlist/plib/pparser.cpp +++ b/src/lib/netlist/plib/pparser.cpp @@ -318,14 +318,14 @@ pstream::size_type ppreprocessor::vread(value_type *buf, const pstream::size_typ } #define CHECKTOK2(p_op, p_prio) \ - else if (tok == # p_op) \ - { \ - if (prio < p_prio) \ - return val; \ - start++; \ - const auto v2 = expr(sexpr, start, p_prio); \ - val = (val p_op v2); \ - } \ + else if (tok == # p_op) \ + { \ + if (prio < p_prio) \ + return val; \ + start++; \ + const auto v2 = expr(sexpr, start, p_prio); \ + val = (val p_op v2); \ + } \ // Operator precedence see https://en.cppreference.com/w/cpp/language/operator_precedence |