diff options
author | Ben Burdette <bburdette@protonmail.com> | 2022-05-16 09:20:51 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@protonmail.com> | 2022-05-16 09:20:51 -0600 |
commit | 667074b5867ffe40e3f1c59bd8e4ebf259f86aaa (patch) | |
tree | 6ae4400c5496b74532dd3b1b0fd72a40f6f5e97f /src/libutil/ref.hh | |
parent | 86ba0a702c63b4a8ff79a07f9303318feb330642 (diff) |
first whack at passing evalState as an arg to debuggerHook.
Diffstat (limited to 'src/libutil/ref.hh')
-rw-r--r-- | src/libutil/ref.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/ref.hh b/src/libutil/ref.hh index f9578afc7..bf26321db 100644 --- a/src/libutil/ref.hh +++ b/src/libutil/ref.hh @@ -7,7 +7,7 @@ namespace nix { /* A simple non-nullable reference-counted pointer. Actually a wrapper - around std::shared_ptr that prevents non-null constructions. */ + around std::shared_ptr that prevents null constructions. */ template<typename T> class ref { |