Skip to content

Commit a9e2d24

Browse files
remove DottedPair since we never use it, we have Language and Pairlist
1 parent 18139a5 commit a9e2d24

5 files changed

Lines changed: 3 additions & 62 deletions

File tree

inst/include/Rcpp.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
#include <Rcpp/XPtr.h>
5454
#include <Rcpp/Symbol.h>
5555
#include <Rcpp/Language.h>
56-
#include <Rcpp/DottedPair.h>
5756
#include <Rcpp/Pairlist.h>
5857
#include <Rcpp/Function.h>
5958
#include <Rcpp/WeakReference.h>

inst/include/Rcpp/DottedPair.h

Lines changed: 0 additions & 55 deletions
This file was deleted.

inst/include/Rcpp/api/meat/DottedPair.h renamed to inst/include/Rcpp/api/meat/DottedPairImpl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
// You should have received a copy of the GNU General Public License
1919
// along with Rcpp11. If not, see <http://www.gnu.org/licenses/>.
2020

21-
#ifndef Rcpp_api_meat_DottedPair_h
22-
#define Rcpp_api_meat_DottedPair_h
21+
#ifndef Rcpp_api_meat_DottedPairImpl_h
22+
#define Rcpp_api_meat_DottedPairImpl_h
2323

2424
namespace Rcpp{
2525

inst/include/Rcpp/api/meat/meat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include <Rcpp/api/meat/Language.h>
2828
#include <Rcpp/api/meat/DataFrame.h>
2929
#include <Rcpp/api/meat/Environment.h>
30-
#include <Rcpp/api/meat/DottedPair.h>
30+
#include <Rcpp/api/meat/DottedPairImpl.h>
3131
#include <Rcpp/api/meat/Vector.h>
3232
#include <Rcpp/api/meat/Function.h>
3333
#include <Rcpp/api/meat/Matrix.h>

src/api.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,6 @@ namespace Rcpp {
245245

246246
// }}}
247247

248-
// {{{ DottedPair
249248
SEXP grow( SEXP head, SEXP tail ){
250249
Scoped<SEXP> x = head ;
251250
Scoped<SEXP> res = Rf_cons( x, tail ) ;
@@ -264,8 +263,6 @@ namespace Rcpp {
264263
}
265264
}
266265

267-
// }}}
268-
269266
// {{{ Promise
270267
Promise::Promise(SEXP x) {
271268
if( TYPEOF(x) != PROMSXP )

0 commit comments

Comments
 (0)