File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change 1
1
# cpp11 (development version)
2
2
3
+ * read-only ` r_vector ` constructors now disallow implicit construction with named arguments (#237 )
3
4
* read-only ` r_vector.attr() ` methods now return const objects, so it is a compile time error to try to assign to them (#237 )
4
5
* Allow ` cpp11::matrix ` to be accessed either row-wise or column-wise (the default) depending on the user's choice (@alyst , #229 )
5
6
* Fixed ` + ` and ` += ` operators of ` r_vector::[const_]iterator ` to conform the * iterators* concept:
Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ class r_vector {
103
103
};
104
104
105
105
r_vector (const writable::r_vector<T>& rhs) : r_vector(static_cast <SEXP>(rhs)) {}
106
+ r_vector (named_arg) = delete ;
106
107
107
108
bool is_altrep () const ;
108
109
You can’t perform that action at this time.
0 commit comments