mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-09-29 19:24:25 +03:00
whitespace changes
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user