Don't explicitly delete copy ctor of dynamic_format_arg_store

Explicitly deleting the copy ctor causes the move constructor to not be
implicitly generated. This behaviour is different than what was in
v8.0.1 and causes code that relied on the move ctor of
dynamic_format_arg_store to break.
This commit is contained in:
Luc Pelletier 2021-12-18 11:55:22 -05:00
parent e46392ea2c
commit 73732e19e9

View File

@ -145,9 +145,6 @@ class dynamic_format_arg_store
public:
constexpr dynamic_format_arg_store() = default;
constexpr dynamic_format_arg_store(
const dynamic_format_arg_store<Context>& store) = delete;
/**
\rst
Adds an argument into the dynamic store for later passing to a formatting