Skip to content
Snippets Groups Projects

[Futurev4] fix failing tests

Merged Michal Mazurek requested to merge Futurev3_fix_failing_tests into Futurev4
All threads resolved!
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
  • ed03592d
    Modernize LoKiCore · ed03592d
    Gerhard Raven authored
    * prefer =default for copy/move c'tor over explicit equivalent implementation
    * do not explicitly invoke default c'tor of base classes
    * prefer override over virtual as qualification of virt. func. implementations
    * implement And,Or,Less,Equal,LessOrEqual,NotEqual as special cases of BinaryOp
    * implement Plus,Minus,Divide,Multiply as special cases of Combination
    * add {} to explicitly call c'tor when instantiating (const) objects
    
    Moved from LHCb@77c54e75
@@ -1170,7 +1170,7 @@ namespace LoKi
* @author Vanya BELYAEV belyaev@physics.syr.edu
* @date 2007-07-22
*/
const LoKi::Valid<const HepMC::GenParticle*> GVALID ;
const LoKi::Valid<const HepMC::GenParticle*> GVALID{} ;
// ========================================================================
/** @var GVEV
* primitive predicate to check the validity of "end_vertex"
@@ -1191,7 +1191,7 @@ namespace LoKi
* @author Vanya BELYAEV belyaev@lapp.in2p3.fr
* @date 2005-03-26
*/
const LoKi::GenParticles::ValidEndVertex GVEV ;
const LoKi::GenParticles::ValidEndVertex GVEV{} ;
// ========================================================================
/** @var GZERO
* primitive function, "always 0"
Loading