1
0
Fork 0
mirror of https://github.com/cosmo-sims/MUSIC.git synced 2024-09-19 17:03:46 +02:00

fixed possible compiler errors on previous commit when not using C++11 compiler

This commit is contained in:
Oliver Hahn 2016-04-16 13:58:36 +02:00
parent 3d8c218a77
commit 085ea01af8

View file

@ -24,12 +24,16 @@ private:
gsl_spline *spline_vtot, *spline_vcdm, *spline_vbaryon; gsl_spline *spline_vtot, *spline_vcdm, *spline_vbaryon;
double m_kmin, m_kmax; double m_kmin, m_kmax;
unsigned m_nlines = 0; unsigned m_nlines;
bool m_linbaryoninterp = false; bool m_linbaryoninterp;
void read_table( void ){ void read_table( void ){
m_nlines = 0;
m_linbaryoninterp = false;
#ifdef WITH_MPI #ifdef WITH_MPI
if( MPI::COMM_WORLD.Get_rank() == 0 ){ if( MPI::COMM_WORLD.Get_rank() == 0 ){
#endif #endif