Skip to content

Commit c198de2

Browse files
committed
white-space only: indentation, around operators/braces/function/function arguments, untabified
also updated Copyright year
1 parent 77d2ce5 commit c198de2

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

inst/include/Rcpp/DateVector.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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

inst/include/Rcpp/DatetimeVector.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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
};

0 commit comments

Comments
 (0)