Skip to content
Snippets Groups Projects
Commit 1fbbbfbc authored by Ian Bell's avatar Ian Bell
Browse files

More const for vdW

parent 1b195bdd
No related branches found
No related tags found
No related merge requests found
......@@ -19,8 +19,8 @@ public:
vdWEOS1(double a, double b) : a(a), b(b) {};
/// Accessor functions
double get_a(){ return a; }
double get_b(){ return b; }
double get_a() const{ return a; }
double get_b() const{ return b; }
const double Ru = 1.380649e-23 * 6.02214076e23; ///< Exact value, given by k_B*N_A
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment