Skip to content
Snippets Groups Projects
Commit f2c9ada5 authored by Andre Gunther's avatar Andre Gunther :island:
Browse files

VectorizedML/Sequence fix const return type warning

parent b9b68f44
No related branches found
No related tags found
1 merge request!4481VectorizedML/Sequence fix const return type warning
Pipeline #7087239 passed
......@@ -65,13 +65,13 @@ namespace LHCb::VectorizedML {
void set_index( size_t index ) { m_index = index; }
auto name() const { return std::string( TypeToString( m_type ) ) + "_" + std::to_string( m_index ); };
auto const nInputs() const { return m_ninput; }
auto const nOutputs() const { return m_noutput; }
auto nInputs() const { return m_ninput; }
auto nOutputs() const { return m_noutput; }
auto const nBins() const { return m_nbins; }
auto nBins() const { return m_nbins; }
auto const type() const { return static_cast<int>( m_type ); }
auto const index() const { return m_index; }
auto type() const { return static_cast<int>( m_type ); }
auto index() const { return m_index; }
protected:
Type m_type{};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment