common: rm the cast operator of md_config_cacher_t

as its replacement - the type-deduced operator() - is now in use,
and the resulting code is more readable and less error-prone.

Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
This commit is contained in:
Ronen Friedman 2024-11-14 06:12:23 -06:00
parent 71de8c0acc
commit f92042853a
1 changed files with 0 additions and 4 deletions

View File

@ -50,10 +50,6 @@ public:
conf.remove_observer(this);
}
operator ValueT() const {
return value_cache.load();
}
ValueT operator*() const {
return value_cache.load();
}