mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-09-29 11:16:29 +03:00
debug: always use %zu in format string for size_t
This commit is contained in:
committed by
Matthew Barr
parent
0cc941dfd5
commit
3cf4199879
@@ -103,7 +103,7 @@ bool graph_empty(const Graph &g) {
|
||||
}
|
||||
|
||||
vector<vector<u32>> removeClique(CliqueGraph &cg) {
|
||||
DEBUG_PRINTF("graph size:%lu\n", num_vertices(cg));
|
||||
DEBUG_PRINTF("graph size:%zu\n", num_vertices(cg));
|
||||
vector<vector<u32>> cliquesVec = {findCliqueGroup(cg)};
|
||||
while (!graph_empty(cg)) {
|
||||
const vector<u32> &c = cliquesVec.back();
|
||||
|
Reference in New Issue
Block a user