8290290: Remove addition of TimeInstants

Reviewed-by: stuefe, dholmes
This commit is contained in:
Kim Barrett 2022-07-14 14:37:10 +00:00
parent c7c20661ee
commit 3bb2dc8e7f

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -215,9 +215,6 @@ class TimeInstant : public Rep<TimeSource> {
Rep<TimeSource>::operator-=(rhs);
return *this;
}
TimeInterval<Rep, TimeSource> operator+(const TimeInstant<Rep, TimeSource>& end) const {
return TimeInterval<Rep, TimeSource>(end, *this);
}
TimeInterval<Rep, TimeSource> operator-(const TimeInstant<Rep, TimeSource>& start) const {
return TimeInterval<Rep, TimeSource>(*this, start);
}