const correctness

This commit is contained in:
Angelos Mantzaflaris 2015-12-07 11:43:29 +01:00
parent c97139ed60
commit 0262897d75
1 changed files with 2 additions and 2 deletions

View File

@ -32069,7 +32069,7 @@ namespace exprtk
}
template <typename T>
inline T derivative(expression<T>& e,
inline T derivative(const expression<T>& e,
T& x,
const T& h = T(0.00000001))
{
@ -32088,7 +32088,7 @@ namespace exprtk
}
template <typename T>
inline T second_derivative(expression<T>& e,
inline T second_derivative(const expression<T>& e,
T& x,
const T& h = T(0.00001))
{