Skip to content

Commit

Permalink
move comment
Browse files Browse the repository at this point in the history
  • Loading branch information
m-fila committed Sep 27, 2024
1 parent ca3eeff commit d9a0c07
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/templates/Interface.h.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ private:
std::unique_ptr<Concept> m_self{nullptr};

public:
template<typename ValueT, typename = std::enable_if_t<isInitializableFrom<ValueT>>> // "{{ 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<typename ValueT, typename = std::enable_if_t<isInitializableFrom<ValueT>>>
{{ class.bare_type }}(ValueT value) :
m_self(std::make_unique<Model<podio::detail::GetDefaultHandleType<ValueT>>>(value)) {
}
Expand Down

0 comments on commit d9a0c07

Please sign in to comment.