Skip to content
Snippets Groups Projects
Commit ab9e4026 authored by amathad's avatar amathad
Browse files

RFix build warnings on platform x86_64-centos7-clang8-opt

parent f4fd0c49
No related branches found
No related tags found
1 merge request!767proof-of-concept for a new tupling algorithm
Pipeline #2368516 failed
......@@ -66,7 +66,10 @@ protected:
StatusCode booktuple( const Tuples::Tuple& m_ntuple, const std::string& colname, const T2& val ) const;
StatusCode checks();
StatusCode setParticleTupleProps();
void FindAndBookTuple( const unsigned int& i, const T& particles, const Tuples::Tuple& ntuple ) const {}
void FindAndBookTuple( const unsigned int& i, const T& particles, const Tuples::Tuple& ntuple ) const {
//variables used in explicit template specialisation, so suppress unused variable compiler warning here
(void)i; (void)particles; (void)ntuple;
}
//(Will be removed): The following overloaded function (makeMCTwoBodyDecay) are only used when m_makeCustomData is set
// to true (see m_makeCustomData property description for more info)
void makeMCTwoBodyDecay( LHCb::MCParticle& p, LHCb::MCParticle& p1, LHCb::MCParticle& p2, const int& parentid ) const;
......
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