aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/build/goal.cc
diff options
context:
space:
mode:
authoreldritch horrors <pennae@lix.systems>2024-07-20 21:05:19 +0200
committereldritch horrors <pennae@lix.systems>2024-07-22 19:01:40 +0000
commitad36fb43ada8b4b31a10f6a7e1bade9f00aaa661 (patch)
tree061e7b4764207d36e457529feb9071d09ba08b4c /src/libstore/build/goal.cc
parentd70e045f90e8b41b5b9f1fa0777d98eed64afb17 (diff)
libstore: remove addToWeakGoals
under owner_less it's equivalent to insert(), only sometimes a little bit faster because it does not construct a weak_ptr if the goal is in the set already. this small difference in performance does not matter here and c++23 will make insert transparent anyway, so we can drop it Change-Id: I7cbd7d6e0daa95d67145ec58183162f6c4743b15
Diffstat (limited to 'src/libstore/build/goal.cc')
-rw-r--r--src/libstore/build/goal.cc10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/libstore/build/goal.cc b/src/libstore/build/goal.cc
index 2704fc6ab..8f190cede 100644
--- a/src/libstore/build/goal.cc
+++ b/src/libstore/build/goal.cc
@@ -34,18 +34,10 @@ BuildResult Goal::getBuildResult(const DerivedPath & req) const {
}
-void addToWeakGoals(WeakGoals & goals, GoalPtr p)
-{
- if (goals.find(p) != goals.end())
- return;
- goals.insert(p);
-}
-
-
void Goal::addWaitee(GoalPtr waitee)
{
waitees.insert(waitee);
- addToWeakGoals(waitee->waiters, shared_from_this());
+ waitee->waiters.insert(shared_from_this());
}