From 354610429d88d644b577edae5717777413622d23 Mon Sep 17 00:00:00 2001 From: Ian Bell <ian.bell@nist.gov> Date: Thu, 13 May 2021 11:49:29 -0400 Subject: [PATCH] Just the product --- include/teqp/constants.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/teqp/constants.hpp b/include/teqp/constants.hpp index 9aae2b0..ed70f20 100644 --- a/include/teqp/constants.hpp +++ b/include/teqp/constants.hpp @@ -7,5 +7,5 @@ template<typename NumType> const auto get_R_gas() { const double k_B = 1.380649e-23; ///< Boltzmann constant const double N_A = 6.02214076e23; ///< Avogadro's number - return forceeval(static_cast<NumType>(N_A*k_B)); + return N_A*k_B; }; \ No newline at end of file -- GitLab