mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-06-28 16:41:01 +03:00
Remove unwanted move constructor
This commit is contained in:
parent
b8753e3daf
commit
d33dcc0534
@ -1735,8 +1735,6 @@ namespace {
|
|||||||
struct SomRevNfa {
|
struct SomRevNfa {
|
||||||
SomRevNfa(NFAVertex s, ReportID r, bytecode_ptr<NFA> n)
|
SomRevNfa(NFAVertex s, ReportID r, bytecode_ptr<NFA> n)
|
||||||
: sink(s), report(r), nfa(move(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)) {}
|
|
||||||
NFAVertex sink;
|
NFAVertex sink;
|
||||||
ReportID report;
|
ReportID report;
|
||||||
bytecode_ptr<NFA> nfa;
|
bytecode_ptr<NFA> nfa;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user