Skip to content

Commit cb43aee

Browse files
1900 was added twice for some reason
1 parent 672b29d commit cb43aee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Title: Seamless R and C++ Integration
33
Version: 0.10.6.2
44
Date: 2013-11-14
55
Authors@R: c(
6-
person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "edd@debian.org" ),
7-
person("Romain", "Francois", role = "aut", email = "romain@r-enthusiasts.com"),
6+
person("Dirk", "Eddelbuettel", role = "aut", email = "edd@debian.org" ),
7+
person("Romain", "Francois", role = c("aut", "cre"), email = "romain@r-enthusiasts.com"),
88
person("JJ", "Allaire", role = "ctb", email = "jj.allaire@gmail.com"),
99
person("John", "Chambers", role = "ctb", email = "jmc@r-project.org"),
1010
person("Douglas", "Bates", role = "ctb", email = "bates@stat.wisc.edu")

inst/include/Rcpp/Datetime.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ namespace Rcpp {
4949
int getHours() const { return m_tm.tm_hour; }
5050
int getDay() const { return m_tm.tm_mday; }
5151
int getMonth() const { return m_tm.tm_mon + 1; } // makes it 1 .. 12
52-
int getYear() const { return m_tm.tm_year + 1900; }
52+
int getYear() const { return m_tm.tm_year ; }
5353
int getWeekday() const { return m_tm.tm_wday + 1; } // makes it 1 .. 7
5454
int getYearday() const { return m_tm.tm_yday + 1; } // makes it 1 .. 366
5555

0 commit comments

Comments
 (0)