mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-09-29 11:16:29 +03:00
Fix 'unqualified call to std::move' errors in clang 15+
This commit is contained in:
@@ -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