1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-15 15:02:42 +01:00

Add comment

This commit is contained in:
Eelco Dolstra 2025-09-08 05:57:02 +02:00
parent e791ede495
commit 9302ec5e0e

View file

@ -174,6 +174,10 @@ private:
std::unique_ptr<PublicKeys> publicKeys;
};
/**
* Mutable state. It's behind a `ref` to reduce false sharing
* between immutable and mutable fields.
*/
ref<Sync<State>> _state;
public: