We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 812e6ce commit 5217dedCopy full SHA for 5217ded
inst/include/cpp11/matrix.hpp
@@ -189,11 +189,11 @@ class matrix : public matrix_slices<S> {
189
190
operator SEXP() const { return SEXP(vector_); }
191
192
- attribute_proxy<V> attr(const char* name) { return vector_.attr(name); }
+ SEXP attr(const char* name) { return vector_.attr(name); }
193
194
- attribute_proxy<V> attr(const std::string& name) { return vector_.attr(name); }
+ SEXP attr(const std::string& name) { return vector_.attr(name); }
195
196
- attribute_proxy<V> attr(SEXP name) { return vector_.attr(name); }
+ SEXP attr(SEXP name) { return vector_.attr(name); }
197
198
void attr(const char* name, SEXP value) { vector_.attr(name) = value; }
199
0 commit comments