whitespace changes

This commit is contained in:
Matthew Barr
2017-05-03 14:47:01 +10:00
parent 923e602601
commit c510b85bf1
5 changed files with 25 additions and 25 deletions

View File

@@ -1734,8 +1734,8 @@ namespace {
struct SomRevNfa {
SomRevNfa(NFAVertex s, ReportID r, bytecode_ptr<NFA> n)
: sink(s), report(r), nfa(move(n)) {}
SomRevNfa(SomRevNfa&& s) // MSVC2013 needs this for emplace
: sink(s.sink), report(s.report), nfa(move(s.nfa)) {}
SomRevNfa(SomRevNfa &&s) // MSVC2013 needs this for emplace
: sink(s.sink), report(s.report), nfa(move(s.nfa)) {}
NFAVertex sink;
ReportID report;
bytecode_ptr<NFA> nfa;