about summary refs log tree commit diff
path: root/third_party/nix/src/libutil/ref.hh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/src/libutil/ref.hh')
-rw-r--r--third_party/nix/src/libutil/ref.hh2
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 063e6b327c..3c375491fd 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;