We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
is_dict_value
1 parent b5cd3d9 commit e729933Copy full SHA for e729933
include/session/config/base.hpp
@@ -719,7 +719,7 @@ class ConfigBase : public ConfigSig {
719
/// Inputs:
720
/// - `value` -- replaces current value with given sys_seconds's time_since_epoch() value.
721
void operator=(std::chrono::sys_seconds value) {
722
- assign_if_changed(value.time_since_epoch().count());
+ assign_if_changed(static_cast<int64_t>(value.time_since_epoch().count()));
723
}
724
725
/// API: base/ConfigBase::DictFieldProxy::operator=(config::set)
0 commit comments