Skip to content

Commit 56041ba

Browse files
authored
Formatting
1 parent 77060f5 commit 56041ba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

inst/include/cpp11/external_pointer.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ class external_pointer {
7272
}
7373

7474
external_pointer& operator=(external_pointer&& rhs) noexcept {
75-
// This works even if `this == &rhs` because `data_` (a `cpp11::sexp`) handles the underlying resource.
75+
// This works even if `this == &rhs` because `data_` (a `cpp11::sexp`) handles
76+
// the underlying resource.
7677
data_ = rhs.data_;
7778
// Order matters: first assign, then clear the RHS.
7879
rhs.data_ = R_NilValue;

0 commit comments

Comments
 (0)