From: Jonathan Wakely Date: Thu, 22 Dec 2022 00:19:45 +0000 (+0000) Subject: libstdc++: Add [[nodiscard]] in X-Git-Tag: upstream/13.1.0~2404 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec8f914f572ce45dbf5743c801c6a101e9a785c7;p=platform%2Fupstream%2Fgcc.git libstdc++: Add [[nodiscard]] in libstdc++-v3/ChangeLog: * include/std/chrono: Use nodiscard attribute. --- diff --git a/libstdc++-v3/include/std/chrono b/libstdc++-v3/include/std/chrono index 4c5fbfa..33653f8 100644 --- a/libstdc++-v3/include/std/chrono +++ b/libstdc++-v3/include/std/chrono @@ -128,11 +128,13 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION using time_point = chrono::time_point; static constexpr bool is_steady = false; + [[nodiscard]] static time_point now() { return from_sys(system_clock::now()); } template + [[nodiscard]] static sys_time> to_sys(const utc_time<_Duration>& __t) { @@ -145,6 +147,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION } template + [[nodiscard]] static utc_time> from_sys(const sys_time<_Duration>& __t) { @@ -171,11 +174,13 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION static constexpr bool is_steady = false; // XXX true for CLOCK_TAI? // TODO move into lib, use CLOCK_TAI on linux, add extension point. + [[nodiscard]] static time_point now() { return from_utc(utc_clock::now()); } template + [[nodiscard]] static utc_time> to_utc(const tai_time<_Duration>& __t) { @@ -184,6 +189,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION } template + [[nodiscard]] static tai_time> from_utc(const utc_time<_Duration>& __t) { @@ -208,11 +214,13 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION static constexpr bool is_steady = false; // XXX // TODO move into lib, add extension point. + [[nodiscard]] static time_point now() { return from_utc(utc_clock::now()); } template + [[nodiscard]] static utc_time> to_utc(const gps_time<_Duration>& __t) { @@ -221,6 +229,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION } template + [[nodiscard]] static gps_time> from_utc(const utc_time<_Duration>& __t) { @@ -394,6 +403,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION /// Convert a time point to a different clock. template + [[nodiscard]] inline auto clock_cast(const time_point<_SourceClock, _Duration>& __t) requires __detail::__clock_convs<_DestClock, _SourceClock, _Duration> @@ -2620,6 +2630,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION leap_second(const leap_second&) = default; leap_second& operator=(const leap_second&) = default; + [[nodiscard]] constexpr sys_seconds date() const noexcept { @@ -2628,6 +2639,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION return sys_seconds(-_M_s); } + [[nodiscard]] constexpr seconds value() const noexcept { @@ -2638,71 +2650,71 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // This can be defaulted because the database will never contain two // leap_second objects with the same date but different signs. - friend constexpr bool + [[nodiscard]] friend constexpr bool operator==(const leap_second&, const leap_second&) noexcept = default; - friend constexpr strong_ordering + [[nodiscard]] friend constexpr strong_ordering operator<=>(const leap_second& __x, const leap_second& __y) noexcept { return __x.date() <=> __y.date(); } template - friend constexpr bool + [[nodiscard]] friend constexpr bool operator==(const leap_second& __x, const sys_time<_Duration>& __y) noexcept { return __x.date() == __y; } template - friend constexpr bool + [[nodiscard]] friend constexpr bool operator<(const leap_second& __x, const sys_time<_Duration>& __y) noexcept { return __x.date() < __y; } template - friend constexpr bool + [[nodiscard]] friend constexpr bool operator<(const sys_time<_Duration>& __x, const leap_second& __y) noexcept { return __x < __y.date(); } template - friend constexpr bool + [[nodiscard]] friend constexpr bool operator>(const leap_second& __x, const sys_time<_Duration>& __y) noexcept { return __y < __x.date(); } template - friend constexpr bool + [[nodiscard]] friend constexpr bool operator>(const sys_time<_Duration>& __x, const leap_second& __y) noexcept { return __y.date() < __x; } template - friend constexpr bool + [[nodiscard]] friend constexpr bool operator<=(const leap_second& __x, - const sys_time<_Duration>& __y) noexcept + const sys_time<_Duration>& __y) noexcept { return !(__y < __x.date()); } template - friend constexpr bool + [[nodiscard]] friend constexpr bool operator<=(const sys_time<_Duration>& __x, - const leap_second& __y) noexcept + const leap_second& __y) noexcept { return !(__y.date() < __x); } template - friend constexpr bool + [[nodiscard]] friend constexpr bool operator>=(const leap_second& __x, - const sys_time<_Duration>& __y) noexcept + const sys_time<_Duration>& __y) noexcept { return !(__x.date() < __y); } template - friend constexpr bool + [[nodiscard]] friend constexpr bool operator>=(const sys_time<_Duration>& __x, - const leap_second& __y) noexcept + const leap_second& __y) noexcept { return !(__x < __y.date()); } template _Duration> - friend constexpr auto + [[nodiscard]] friend constexpr auto operator<=>(const leap_second& __x, - const sys_time<_Duration>& __y) noexcept + const sys_time<_Duration>& __y) noexcept { return __x.date() <=> __y; } private: