ISO8601: Dead code removal
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user