Skip to content

Commit 85e6b97

Browse files
committed
remove errranous quotes from class__dummyInstance call (Closes #147)
1 parent 0ed2191 commit 85e6b97

File tree

2 files changed

+17
-13
lines changed

2 files changed

+17
-13
lines changed

ChangeLog

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,39 @@
1+
2014-05-23 Dirk Eddelbuettel <[email protected]>
2+
3+
* R/Module.R (new_dummyObject): Remove erraneous quotes
4+
15
2014-05-18 Kevin Ushey <[email protected]>
26

3-
* inst/include/Rcpp/vector/Vector.h: Safer casting to fix #146
4-
* inst/include/Rcpp/Environment.h: Idem
5-
* inst/include/Rcpp/api/meat/Environment.h: Idem
6-
* inst/include/Rcpp/vector/Vector.h: Idem
7+
* inst/include/Rcpp/vector/Vector.h: Safer casting to fix #146
8+
* inst/include/Rcpp/Environment.h: Idem
9+
* inst/include/Rcpp/api/meat/Environment.h: Idem
10+
* inst/include/Rcpp/vector/Vector.h: Idem
711

812
2014-05-10 Dirk Eddelbuettel <[email protected]>
913

10-
* R/Attributes.R (compileAttributes): Read Imports: as well
14+
* R/Attributes.R (compileAttributes): Read Imports: as well
1115

1216
2014-05-07 Kevin Ushey <[email protected]>
1317

14-
* R/Attributes.R (.plugins[["cpp11"]]): Set USE_CXX1X to more
15-
reasonable non-empty value
18+
* R/Attributes.R (.plugins[["cpp11"]]): Set USE_CXX1X to more
19+
reasonable non-empty value
1620

1721
2014-05-06 Kevin Ushey <[email protected]>
1822

19-
* R/Attributes.R (.plugins[["cpp11"]]): Set USE_CXX1X to non-empty
20-
value
23+
* R/Attributes.R (.plugins[["cpp11"]]): Set USE_CXX1X to non-empty
24+
value
2125

2226
2014-04-30 Dirk Eddelbuettel <[email protected]>
2327

24-
* R/Attributes.R: Add plugins for C++0x and C++1y
28+
* R/Attributes.R: Add plugins for C++0x and C++1y
2529

2630
2014-04-30 JJ Allaire <[email protected]>
2731

2832
* R/Attributes.R: Use USE_CXX1X for cpp11 plugin when R >= 3.1
2933

3034
2014-04-02 Dirk Eddelbuettel <[email protected]>
3135

32-
* tests/doRUnit.R: Better RUnit error report with thanks to Murray
36+
* tests/doRUnit.R: Better RUnit error report with thanks to Murray
3337

3438
2014-03-18 JJ Allaire <[email protected]>
3539

R/Module.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2010 - 2012 John Chambers, Dirk Eddelbuettel and Romain Francois
1+
# Copyright (C) 2010 - 2014 John Chambers, Dirk Eddelbuettel and Romain Francois
22
#
33
# This file is part of Rcpp.
44
#
@@ -126,7 +126,7 @@ new_CppObject_xp <- function(module, pointer, ...) {
126126
}
127127

128128
new_dummyObject <- function(...)
129-
.External( "class__dummyInstance", ...)
129+
.External( class__dummyInstance, ...)
130130

131131

132132
# class method for $initialize

0 commit comments

Comments
 (0)