Missing include for arch.
[libdcp.git] / src / local_time.cc
index 647ff35dd45e2032775a75ff9c7a2b62f2a13f34..401bd9d749d6ba6a593078c8082a832fbbc4494d 100644 (file)
@@ -212,6 +212,27 @@ LocalTime::operator== (LocalTime const & other) const
                _tz_hour == other._tz_hour && _tz_minute == other._tz_minute;
 }
 
+bool
+LocalTime::operator< (LocalTime const & other) const
+{
+       if (_year != other._year) {
+               return _year < other._year;
+       }
+       if (_month != other._month) {
+               return _month < other._month;
+       }
+       if (_day != other._day) {
+               return _day < other._day;
+       }
+       if (_hour != other._hour) {
+               return _hour < other._hour;
+       }
+       if (_second != other._second) {
+               return _second < other._second;
+       }
+       return _millisecond < other._millisecond;
+}
+
 bool
 LocalTime::operator!= (LocalTime const & other) const
 {