File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 22//
33// DateVector.h: Rcpp R/C++ interface class library -- Date vector support
44//
5- // Copyright (C) 2010 - 2013 Dirk Eddelbuettel and Romain Francois
5+ // Copyright (C) 2010 - 2015 Dirk Eddelbuettel and Romain Francois
66//
77// This file is part of Rcpp.
88//
@@ -29,10 +29,10 @@ namespace Rcpp {
2929
3030 class DateVector : public GreedyVector <Date, DateVector> {
3131 public:
32- DateVector (SEXP vec) : GreedyVector<Date, DateVector>(vec){}
33- DateVector (int n) : GreedyVector<Date, DateVector>(n){}
32+ DateVector (SEXP vec) : GreedyVector<Date, DateVector>(vec) {}
33+ DateVector (int n) : GreedyVector<Date, DateVector>(n) {}
3434
35- inline std::vector<Date> getDates () const {
35+ inline std::vector<Date> getDates () const {
3636 return v ;
3737 }
3838
Original file line number Diff line number Diff line change 22//
33// DatetimeVector.h: Rcpp R/C++ interface class library -- Datetime vector
44//
5- // Copyright (C) 2010 - 2013 Dirk Eddelbuettel and Romain Francois
5+ // Copyright (C) 2010 - 2015 Dirk Eddelbuettel and Romain Francois
66//
77// This file is part of Rcpp.
88//
@@ -30,11 +30,11 @@ namespace Rcpp {
3030
3131 class DatetimeVector : public GreedyVector <Datetime, DatetimeVector> {
3232 public:
33- DatetimeVector (SEXP vec) : GreedyVector<Datetime, DatetimeVector>(vec){}
34- DatetimeVector (int n) : GreedyVector<Datetime, DatetimeVector>(n){}
33+ DatetimeVector (SEXP vec) : GreedyVector<Datetime, DatetimeVector>(vec) {}
34+ DatetimeVector (int n) : GreedyVector<Datetime, DatetimeVector>(n) {}
3535
36- std::vector<Datetime> getDatetimes () const {
37- return v ;
36+ std::vector<Datetime> getDatetimes () const {
37+ return v;
3838 }
3939
4040 };
You can’t perform that action at this time.
0 commit comments