From ec8c6ad17461b2b2d07e070a186740b282fe9ab9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Thu, 13 Apr 2017 11:29:52 +0200 Subject: [PATCH] explicitly call parent constructor --- inst/include/Rcpp/DataFrame.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inst/include/Rcpp/DataFrame.h b/inst/include/Rcpp/DataFrame.h index 7557964e4..0f31a87c6 100644 --- a/inst/include/Rcpp/DataFrame.h +++ b/inst/include/Rcpp/DataFrame.h @@ -43,7 +43,7 @@ namespace Rcpp{ DataFrame_Impl(SEXP x) : Parent(x) { set__(x); } - DataFrame_Impl( const DataFrame_Impl& other){ + DataFrame_Impl( const DataFrame_Impl& other) : Parent() { set__(other) ; }