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 3eb1894 commit f5221c5Copy full SHA for f5221c5
inst/include/Rcpp/DataFrame.h
@@ -2,7 +2,7 @@
2
//
3
// DataFrame.h: Rcpp R/C++ interface class library -- data frames
4
5
-// Copyright (C) 2010 - 2014 Dirk Eddelbuettel and Romain Francois
+// Copyright (C) 2010 - 2015 Dirk Eddelbuettel and Romain Francois
6
7
// This file is part of Rcpp.
8
@@ -40,7 +40,7 @@ namespace Rcpp{
40
typedef Vector<VECSXP, StoragePolicy> Parent ;
41
42
DataFrame_Impl() : Parent( internal::empty_data_frame() ){}
43
- DataFrame_Impl(SEXP x) {
+ DataFrame_Impl(SEXP x) : Parent(x) {
44
set__(x);
45
}
46
DataFrame_Impl( const DataFrame_Impl& other){
0 commit comments