Skip to content

Commit c5638f5

Browse files
committed
refactor: ctor limiters
Signed-off-by: Dmitriy Khaustov aka xDimon <[email protected]>
1 parent 75cbe7c commit c5638f5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/utils/ctor_limiters.hpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
#include <cstddef>
1010
#include <stdexcept>
1111

12+
#include <fmt/format.h>
13+
1214
namespace jam {
1315

1416
class NonCopyable {
@@ -42,14 +44,16 @@ namespace jam {
4244
};
4345

4446
template <typename T>
45-
class Singleton : public NonCopyable, public NonMovable {
47+
requires std::same_as<T, std::decay_t<T>>
48+
class Singleton : NonCopyable, NonMovable {
4649
using BaseType = T;
4750

4851
public:
4952
Singleton() {
5053
if (exists.test_and_set(std::memory_order_acquire)) {
5154
throw std::logic_error(
52-
"Attempt to create one more instance of singleton");
55+
fmt::format("Attempt to create one more instance of singleton '{}'",
56+
typeid(BaseType).name()));
5357
}
5458
}
5559
~Singleton() {

0 commit comments

Comments
 (0)