aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/derived-path-map.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore/derived-path-map.hh')
-rw-r--r--src/libstore/derived-path-map.hh7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/libstore/derived-path-map.hh b/src/libstore/derived-path-map.hh
index 4a2c90733..4d72b301e 100644
--- a/src/libstore/derived-path-map.hh
+++ b/src/libstore/derived-path-map.hh
@@ -20,11 +20,8 @@ namespace nix {
*
* @param V A type to instantiate for each output. It should probably
* should be an "optional" type so not every interior node has to have a
- * value. For example, the scheduler uses
- * `DerivedPathMap<std::weak_ptr<CreateDerivationAndRealiseGoal>>` to
- * remember which goals correspond to which outputs. `* const Something`
- * or `std::optional<Something>` would also be good choices for
- * "optional" types.
+ * value. `* const Something` or `std::optional<Something>` would be
+ * good choices for "optional" types.
*/
template<typename V>
struct DerivedPathMap {