Skip to content

Commit

Permalink
Use clang fix also in the case of ICC.
Browse files Browse the repository at this point in the history
  • Loading branch information
ktf committed Jan 28, 2015
1 parent 18fbfc1 commit f762ec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RecoLocalCalo/EcalRecAlgos/src/ESRecHitSimAlgo.cc
Expand Up @@ -51,7 +51,7 @@ EcalRecHit::ESFlags ESRecHitSimAlgo::evalAmplitude(float * results, const ESData

// A from analytical formula:
constexpr float t1 = 20.;
#ifdef __clang__
#if defined(__clang__) || defined(__INTEL_COMPILER)
const float A_1 = 1./( std::pow(w/n*(t1),n) * std::exp(n-w*(t1)) );
#else
constexpr float A_1 = 1./( std::pow(w/n*(t1),n) * std::exp(n-w*(t1)) );
Expand Down

0 comments on commit f762ec0

Please sign in to comment.