Skip to content
Snippets Groups Projects

VectorizedML/Sequence fix const return type warning

Merged Andre Gunther requested to merge gunther-fix-ml-clang into master
1 file
+ 5
5
Compare changes
  • Side-by-side
  • Inline
@@ -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{};
Loading