Skip to content

Commit 7dcb614

Browse files
committed
remove extra ';' noticed by 'g++ -pedantic'; update minor version
1 parent 1a7cf97 commit 7dcb614

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 0.11.1
4-
Date: 2014-03-12
3+
Version: 0.11.2
4+
Date: 2014-04-01
55
Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "edd@debian.org" ),
66
person("Romain", "Francois", role = "aut", email = "romain@r-enthusiasts.com"),
77
person("JJ", "Allaire", role = "ctb", email = "jj.allaire@gmail.com"),

inst/include/Rcpp/vector/ListOf.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ class ListOf {
2929
typedef typename traits::r_vector_iterator<VECSXP>::type iterator;
3030
typedef typename traits::r_vector_const_iterator<VECSXP>::type const_iterator;
3131

32-
ListOf(): list(R_NilValue) {};
32+
ListOf(): list(R_NilValue) {}
3333

34-
ListOf(SEXP data_): list(data_) {};
34+
ListOf(SEXP data_): list(data_) {}
3535

3636
template <typename U>
37-
ListOf(const U& data_): list(data_) {};
37+
ListOf(const U& data_): list(data_) {}
3838

39-
ListOf(const ListOf& other): list(other.list) {};
39+
ListOf(const ListOf& other): list(other.list) {}
4040
ListOf& operator=(const ListOf& other) {
4141
if (this != &other) {
4242
list = other.list;

0 commit comments

Comments
 (0)