From 73732e19e977a146578206532b8af79490f31c2e Mon Sep 17 00:00:00 2001 From: Luc Pelletier Date: Sat, 18 Dec 2021 11:55:22 -0500 Subject: [PATCH] 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. --- include/fmt/args.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/fmt/args.h b/include/fmt/args.h index 99060040..9a8e4ed2 100644 --- a/include/fmt/args.h +++ b/include/fmt/args.h @@ -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& store) = delete; - /** \rst Adds an argument into the dynamic store for later passing to a formatting