From ce1de2a78a947423b305289beefc5f904734b234 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Fri, 1 Nov 2019 10:25:45 +0900 Subject: Reinstate Omittable<>::omitted (deprecated) To ease on back-compatibility. --- lib/util.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/util.h b/lib/util.h index 15c9fec8..5be62382 100644 --- a/lib/util.h +++ b/lib/util.h @@ -83,6 +83,12 @@ public: return this->has_value() ? base_type::operator*() : this->emplace(); } + [[deprecated("Use '!o' or '!o.has_value()' instead of 'o.omitted()'")]] + bool omitted() const + { + return !this->has_value(); + } + /// Merge the value from another Omittable /// \return true if \p other is not omitted and the value of /// the current Omittable was different (or omitted); -- cgit v1.2.3