Disable broken copy ctor of dynamic_format_arg_store

This commit is contained in:
Victor Zverovich
2021-12-17 17:13:08 -08:00
parent 659de779e6
commit be51ee1ceb
2 changed files with 12 additions and 32 deletions

View File

@@ -146,14 +146,7 @@ class dynamic_format_arg_store
constexpr dynamic_format_arg_store() = default;
constexpr dynamic_format_arg_store(
const dynamic_format_arg_store<Context>& store)
:
#if FMT_GCC_VERSION && FMT_GCC_VERSION < 409
basic_format_args<Context>(),
#endif
data_(store.data_),
named_info_(store.named_info_) {
}
const dynamic_format_arg_store<Context>& store) = delete;
/**
\rst