Skip to content

Commit

Permalink
Merge pull request #13658 from davidlt/fix-icc-GsfBetheHeitlerUpdator
Browse files Browse the repository at this point in the history
Do not use constexpr with std::log in C++14 for ICC
  • Loading branch information
cmsbuild committed Mar 10, 2016
2 parents 5518252 + 519c2e1 commit eb89ad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TrackingTools/GsfTracking/src/GsfBetheHeitlerUpdator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace {
/// Second moment of the Bethe-Heitler distribution (in z=E/E0)
inline float BetheHeitlerVariance (const float rl)
{
#if __clang__
#if defined(__clang__) || defined(__INTEL_COMPILER)
const
#else
constexpr
Expand Down

0 comments on commit eb89ad7

Please sign in to comment.