diff options
author | Carlo Nucera <carlo.nucera@protonmail.com> | 2020-05-26 12:31:26 -0400 |
---|---|---|
committer | Carlo Nucera <carlo.nucera@protonmail.com> | 2020-05-26 12:31:26 -0400 |
commit | 89a5ac9d3ba24b8af77fb91d5487e309d9402c1b (patch) | |
tree | 2e8cab680d0861849c27dcd971f3d6a5f6fbaf73 /src | |
parent | d49e65ba9df79a574885a056affc3ab9caf8cfbb (diff) | |
parent | 0f3f90107174c74e9416c58b5989047dd40fc61f (diff) |
Merge remote-tracking branch 'john-ericson/more-rust-ffi' into no-stringly-typed-derivation-output
Diffstat (limited to 'src')
-rw-r--r-- | src/libutil/rust-ffi.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/rust-ffi.hh b/src/libutil/rust-ffi.hh index 584dcf110..8b61b6d00 100644 --- a/src/libutil/rust-ffi.hh +++ b/src/libutil/rust-ffi.hh @@ -42,7 +42,7 @@ protected: } // Not all Rust types are Clone / Copy, but our base Value class needs to - // have a copy constructor so that ones which do implement Copy/Clone + // have a copy constructor so that types which do implement Copy/Clone // can be copied/cloned. Value(const Value & other) : raw(other.raw) |