aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/test/script/script.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbuild2/test/script/script.hxx')
-rw-r--r--libbuild2/test/script/script.hxx14
1 files changed, 13 insertions, 1 deletions
diff --git a/libbuild2/test/script/script.hxx b/libbuild2/test/script/script.hxx
index f4ef32a..73fd696 100644
--- a/libbuild2/test/script/script.hxx
+++ b/libbuild2/test/script/script.hxx
@@ -548,7 +548,19 @@ namespace build2
// Testscript file paths. Specifically, replay_token::file points to
// these path names.
//
- std::set<path_name_value> paths_;
+ struct compare_paths
+ {
+ bool operator() (const path_name_value& x,
+ const path_name_value& y) const
+ {
+ // Note that these path names are always paths, so we compare them
+ // as paths.
+ //
+ return x.path < y.path;
+ }
+ };
+
+ std::set<path_name_value, compare_paths> paths_;
};
}
}