diff options
Diffstat (limited to 'third_party/nix/src/libutil/ref.hh')
-rw-r--r-- | third_party/nix/src/libutil/ref.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/nix/src/libutil/ref.hh b/third_party/nix/src/libutil/ref.hh index 063e6b327c22..3c375491fd0b 100644 --- a/third_party/nix/src/libutil/ref.hh +++ b/third_party/nix/src/libutil/ref.hh @@ -9,7 +9,7 @@ namespace nix { /* A simple non-nullable reference-counted pointer. Actually a wrapper around std::shared_ptr that prevents non-null constructions. */ template <typename T> -class ref { +class ref { // TODO(tazjin): rename to brainworm_ref or something private: std::shared_ptr<T> p; |