mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-11-16 09:21:52 +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
@@ -74,7 +74,7 @@ vector<u32> findCliqueGroup(CliqueGraph &cg) {
|
||||
// Get the vertex to start from
|
||||
vector<u32> clique;
|
||||
while (!gStack.empty()) {
|
||||
vector<u32> g = move(gStack.top());
|
||||
vector<u32> g = std::move(gStack.top());
|
||||
gStack.pop();
|
||||
|
||||
// Choose a vertex from the graph
|
||||
|
||||
Reference in New Issue
Block a user