Skip to content

Commit

Permalink
EOSX: correct return type in function call
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Kalinani committed Dec 5, 2024
1 parent 587c5b0 commit f53fcd7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion EOSX/src/eos_3p_hybrid/eos_3p_hybrid.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,12 @@ public:
}

// edited
CCTK_HOST CCTK_DEVICE CCTK_ATTRIBUTE_ALWAYS_INLINE inline void
CCTK_HOST CCTK_DEVICE CCTK_ATTRIBUTE_ALWAYS_INLINE inline CCTK_REAL
eps_from_valid_rho_temp_ye(const CCTK_REAL rho, const CCTK_REAL temp,
const CCTK_REAL ye) const {
// return temp / temp_over_eps;
printf("EOS: eps from temperature not implemented for eos_3p_hybrid.");
return 0.0;
}

// edited
Expand Down

0 comments on commit f53fcd7

Please sign in to comment.