Skip to content
Snippets Groups Projects

fix: do not automatically enable timing in dbg builds

Merged Christoph Hasse requested to merge chasse_align_opt_dbg into master
3 files
+ 2
24
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -38,14 +38,7 @@ ParticleTransporter::ParticleTransporter( const std::string& type, const std::st
, m_ppSvc( NULL )
, m_particle2State( NULL )
, m_eID( 0 )
//
#ifndef NDEBUG
, m_timing( true )
#else
, m_timing( false )
#endif
//
{
, m_timing( false ) {
//
if ( std::string::npos != name.find( "Master" ) ) {
m_trackExtrapolatorName = "TrackMasterExtrapolator:PUBLIC";
Loading