ISO8601: Dead code removal

This commit is contained in:
Paul Beckingham 2015-07-17 15:01:13 -04:00
parent fed3b815a0
commit 7ac86185e4
2 changed files with 0 additions and 10 deletions

View file

@ -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;
}
////////////////////////////////////////////////////////////////////////////////

View file

@ -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