]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
Remove unwanted move constructor
authorMatthew Barr <matthew.barr@intel.com>
Fri, 16 Jun 2017 06:06:52 +0000 (16:06 +1000)
committerMatthew Barr <matthew.barr@intel.com>
Mon, 21 Aug 2017 01:20:22 +0000 (11:20 +1000)
src/nfagraph/ng_som.cpp

index 45917b453edf1ce69897deed10b8c1d012137910..d23ac408b04dbd1c53c3727173929a3392239c04 100644 (file)
@@ -1735,8 +1735,6 @@ 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)) {}
     NFAVertex sink;
     ReportID report;
     bytecode_ptr<NFA> nfa;