From 3ac6d7b4880278db8130d909a520f349392183b4 Mon Sep 17 00:00:00 2001 From: Mateusz Jakub Fila Date: Thu, 26 Sep 2024 15:35:05 +0200 Subject: [PATCH] bring back allowed types comment --- python/templates/Interface.h.jinja2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/templates/Interface.h.jinja2 b/python/templates/Interface.h.jinja2 index 2f40a99a7..f12987bd0 100644 --- a/python/templates/Interface.h.jinja2 +++ b/python/templates/Interface.h.jinja2 @@ -92,7 +92,7 @@ private: std::unique_ptr m_self{nullptr}; public: - template>> + template>> // "{{ class.bare_type }} can only be initialized with one of the following types (and their Mutable counter parts): {{ Types | join(", ") }}"); {{ class.bare_type }}(ValueT value) : m_self(std::make_unique>>(value)) { }