Skip to content
Snippets Groups Projects
Commit cb9e63db authored by Tom Fischer's avatar Tom Fischer
Browse files

[Material] Add const for consistency.

parent 1efafe1e
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ public: ...@@ -31,7 +31,7 @@ public:
* @param variable A variable with any double type value. * @param variable A variable with any double type value.
* @param temperature Temperature with any double type value. * @param temperature Temperature with any double type value.
*/ */
double getValue(const double variable, double temperature) const override double getValue(const double variable, const double temperature) const override
{ {
(void)variable; (void)variable;
(void)temperature; (void)temperature;
......
...@@ -33,7 +33,7 @@ public: ...@@ -33,7 +33,7 @@ public:
* @param temperature Temperature. * @param temperature Temperature.
*/ */
virtual double getValue(const double variable, virtual double getValue(const double variable,
double temperature) const = 0; const double temperature) const = 0;
}; };
} // end of namespace } // end of namespace
......
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