mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-09-30 03:34:25 +03:00
Fix 'unqualified call to std::move' errors in clang 15+
This commit is contained in:
@@ -242,7 +242,7 @@ u32 SomSlotManager::numSomSlots() const {
|
||||
|
||||
u32 SomSlotManager::addRevNfa(bytecode_ptr<NFA> nfa, u32 maxWidth) {
|
||||
u32 rv = verify_u32(rev_nfas.size());
|
||||
rev_nfas.emplace_back(move(nfa));
|
||||
rev_nfas.emplace_back(std::move(nfa));
|
||||
|
||||
// A rev nfa commits us to having enough history around to handle its
|
||||
// max width.
|
||||
|
Reference in New Issue
Block a user