From d9a0c07300e64b4ef4a43888a84d4a2b43864249 Mon Sep 17 00:00:00 2001 From: Mateusz Jakub Fila Date: Fri, 27 Sep 2024 09:40:08 +0200 Subject: [PATCH] move comment --- python/templates/Interface.h.jinja2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/templates/Interface.h.jinja2 b/python/templates/Interface.h.jinja2 index f12987bd0..953ec24ab 100644 --- a/python/templates/Interface.h.jinja2 +++ b/python/templates/Interface.h.jinja2 @@ -92,7 +92,8 @@ private: std::unique_ptr m_self{nullptr}; public: - template>> // "{{ class.bare_type }} can only be initialized with one of the following types (and their Mutable counter parts): {{ Types | join(", ") }}"); + // {{ class.bare_type }} can only be initialized with one of the following types (and their Mutable counter parts): {{ Types | join(", ") }} + template>> {{ class.bare_type }}(ValueT value) : m_self(std::make_unique>>(value)) { }