[Rcpp-commits] r1717 - pkg/Rcpp/src
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Thu Jun 24 20:05:43 CEST 2010
Author: edd
Date: 2010-06-24 20:05:43 +0200 (Thu, 24 Jun 2010)
New Revision: 1717
Modified:
pkg/Rcpp/src/Date.cpp
Log:
remove stray ; (thanks, -pedantic!)
Modified: pkg/Rcpp/src/Date.cpp
===================================================================
--- pkg/Rcpp/src/Date.cpp 2010-06-24 16:43:41 UTC (rev 1716)
+++ pkg/Rcpp/src/Date.cpp 2010-06-24 18:05:43 UTC (rev 1717)
@@ -32,12 +32,12 @@
Date::Date() {
m_d = 0;
update_tm();
- };
+ }
Date::Date(SEXP d) {
m_d = Rcpp::as<int>(d);
update_tm();
- };
+ }
Date::Date(const int &dt) {
m_d = dt;
@@ -138,10 +138,10 @@
int operator-(const Date& d1, const Date& d2) { return d2.m_d - d1.m_d; }
bool operator<(const Date &d1, const Date& d2) { return d1.m_d < d2.m_d; }
bool operator>(const Date &d1, const Date& d2) { return d1.m_d > d2.m_d; }
- bool operator==(const Date &d1, const Date& d2) { return d1.m_d == d2.m_d; };
- bool operator>=(const Date &d1, const Date& d2) { return d1.m_d >= d2.m_d; };
- bool operator<=(const Date &d1, const Date& d2) { return d1.m_d <= d2.m_d; };
- bool operator!=(const Date &d1, const Date& d2) { return d1.m_d != d2.m_d; };
+ bool operator==(const Date &d1, const Date& d2) { return d1.m_d == d2.m_d; }
+ bool operator>=(const Date &d1, const Date& d2) { return d1.m_d >= d2.m_d; }
+ bool operator<=(const Date &d1, const Date& d2) { return d1.m_d <= d2.m_d; }
+ bool operator!=(const Date &d1, const Date& d2) { return d1.m_d != d2.m_d; }
template <> SEXP wrap(const Date &date) {
SEXP value = PROTECT(Rf_allocVector(REALSXP, 1));
More information about the Rcpp-commits
mailing list