summaryrefslogtreecommitdiff
path: root/boost/date_time/date.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/date_time/date.hpp')
-rw-r--r--boost/date_time/date.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/date_time/date.hpp b/boost/date_time/date.hpp
index 81730cab07..2bd936cd5b 100644
--- a/boost/date_time/date.hpp
+++ b/boost/date_time/date.hpp
@@ -6,7 +6,7 @@
* Boost Software License, Version 1.0. (See accompanying
* file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
* Author: Jeff Garland, Bart Garst
- * $Date: 2010-01-10 11:17:23 -0800 (Sun, 10 Jan 2010) $
+ * $Date$
*/
#include <boost/operators.hpp>
@@ -191,8 +191,8 @@ namespace date_time {
dates. It is not exposed to users since that would require class
users to understand the inner workings of the date class.
*/
- explicit date(date_int_type days) : days_(days) {};
- explicit date(date_rep_type days) : days_(days.as_number()) {};
+ explicit date(date_int_type days) : days_(days) {}
+ explicit date(date_rep_type days) : days_(days.as_number()) {}
date_int_type days_;
};