Skip to content

Commit

Permalink
default-initialise empty array to fix compilation with g++ 4.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Oct 4, 2016
1 parent 6d3b904 commit 633b6ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/a_muon.cpp.in
Expand Up @@ -165,7 +165,7 @@ template<> struct IndexBounds<0> {
const_iterator end() const
{ return (begin()+1); }
};
IndexBounds<0>::indices_type IndexBounds<0>::dummyIndex;
IndexBounds<0>::indices_type IndexBounds<0>::dummyIndex{};

@GMuonMinus2_Particles@

Expand Down

0 comments on commit 633b6ce

Please sign in to comment.