Skip to content

Commit ebd881c

Browse files
committed
Formatting
1 parent 328ce3c commit ebd881c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

inst/include/cpp11/r_vector.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,9 @@ inline r_vector<T>::r_vector(const SEXP& data, bool is_altrep)
672672

673673
template <typename T>
674674
inline r_vector<T>::r_vector(SEXP&& data)
675-
: cpp11::r_vector<T>(data), protect_(detail::store_insert(data_)), capacity_(length_) {}
675+
: cpp11::r_vector<T>(data),
676+
protect_(detail::store_insert(data_)),
677+
capacity_(length_) {}
676678

677679
template <typename T>
678680
inline r_vector<T>::r_vector(SEXP&& data, bool is_altrep)

0 commit comments

Comments
 (0)