From: Matthew Barr Date: Fri, 16 Jun 2017 06:06:52 +0000 (+1000) Subject: Remove unwanted move constructor X-Git-Tag: v4.6.0^2~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d33dcc053499623f57f7a568a97fcf723252ab5a;p=thirdparty%2Fvectorscan.git Remove unwanted move constructor --- diff --git a/src/nfagraph/ng_som.cpp b/src/nfagraph/ng_som.cpp index 45917b45..d23ac408 100644 --- a/src/nfagraph/ng_som.cpp +++ b/src/nfagraph/ng_som.cpp @@ -1735,8 +1735,6 @@ namespace { struct SomRevNfa { SomRevNfa(NFAVertex s, ReportID r, bytecode_ptr 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;