mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-11-16 01:12:15 +03:00
Fix 'unqualified call to std::move' errors in clang 15+
This commit is contained in:
committed by
Konstantinos Margaritis
parent
54445cba3c
commit
3ed0c593f4
@@ -212,7 +212,7 @@ void convertFloodProneSuffix(RoseBuildImpl &tbi, RoseVertex v, u32 lit_id,
|
||||
|
||||
// Apply the NFA.
|
||||
assert(!g[v].suffix);
|
||||
g[v].suffix.graph = move(h);
|
||||
g[v].suffix.graph = std::move(h);
|
||||
g[v].reports.clear();
|
||||
|
||||
// Swap v's literal for a shorter one.
|
||||
|
||||
Reference in New Issue
Block a user