diff --git a/src/ISO8601.cpp b/src/ISO8601.cpp index 57b1d0ff8..d05e2b1b6 100644 --- a/src/ISO8601.cpp +++ b/src/ISO8601.cpp @@ -130,13 +130,6 @@ void ISO8601d::clear () _offset = 0; _utc = false; _value = 0; - _default_seconds = 0; -} - -//////////////////////////////////////////////////////////////////////////////// -void ISO8601d::set_default_time (int hours, int minutes, int seconds) -{ - _default_seconds = (hours * 3600) + (minutes * 60) + seconds; } //////////////////////////////////////////////////////////////////////////////// diff --git a/src/ISO8601.h b/src/ISO8601.h index 948ec1f3b..fd1d87e63 100644 --- a/src/ISO8601.h +++ b/src/ISO8601.h @@ -40,7 +40,6 @@ public: operator time_t () const; bool parse (const std::string&, std::string::size_type&); void clear (); - void set_default_time (int, int, int); private: bool parse_date_time (Nibbler&); @@ -65,8 +64,6 @@ public: int _offset; bool _utc; time_t _value; - - int _default_seconds; }; // Period