Skip to content

Commit d4ec13f

Browse files
krlmlreddelbuettel
authored andcommitted
explicitly call parent constructor (#670)
1 parent 21d8388 commit d4ec13f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inst/include/Rcpp/DataFrame.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ namespace Rcpp{
4343
DataFrame_Impl(SEXP x) : Parent(x) {
4444
set__(x);
4545
}
46-
DataFrame_Impl( const DataFrame_Impl& other){
46+
DataFrame_Impl( const DataFrame_Impl& other) : Parent() {
4747
set__(other) ;
4848
}
4949

0 commit comments

Comments
 (0)