mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-06-28 16:41:01 +03:00
ng_corpus_generator: use std::next, not boost::next
This commit is contained in:
parent
037e39b6f5
commit
26ec7dd332
@ -194,7 +194,7 @@ void findPaths(const NGHolder &g, CorpusProperties &cProps,
|
||||
// If we've got no further adjacent vertices, re-use p rather than
|
||||
// copying it for the next path.
|
||||
unique_ptr<VertexPath> new_path;
|
||||
if (boost::next(ai) == ae) {
|
||||
if (std::next(ai) == ae) {
|
||||
new_path = std::move(p);
|
||||
} else {
|
||||
new_path = make_unique<VertexPath>(*p);
|
||||
|
Loading…
x
Reference in New Issue
Block a user