From a64f55f3a55ae8db95022ff8b5574c1eb4f2dc9f Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 29 Aug 2022 01:11:21 +0200 Subject: [PATCH] Add Config::unset_last_release_notes_version() --- src/lib/config.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/config.h b/src/lib/config.h index 9727bac1a..8f1029910 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -1130,6 +1130,10 @@ public: maybe_set (_last_release_notes_version, version); } + void unset_last_release_notes_version() { + maybe_set(_last_release_notes_version, boost::optional()); + } + ExportConfig& export_config() { return _export; } -- 2.30.2