"serialization/tests/TestSerializeRGForce.cpp" did not exist on "ede48b85dc905d36a0314b7fcaf2c95b6d78635e"
Commit cfafe7f2 authored by Michael Sherman's avatar Michael Sherman
Browse files

Added missing "const".

parent df7f942c
...@@ -67,13 +67,13 @@ public: ...@@ -67,13 +67,13 @@ public:
/** /**
* Get the default temperature of the heat bath (in Kelvin). * Get the default temperature of the heat bath (in Kelvin).
*/ */
double getDefaultTemperature() { double getDefaultTemperature() const {
return defaultTemp; return defaultTemp;
} }
/** /**
* Get the default collision frequency (in 1/ps). * Get the default collision frequency (in 1/ps).
*/ */
double getDefaultCollisionFrequency() { double getDefaultCollisionFrequency() const {
return defaultFreq; return defaultFreq;
} }
/** /**
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment