C++ Mathematical Expression Library (ExprTk) http://www.partow.net/programming/exprtk/index.html

This commit is contained in:
Arash Partow 2012-01-28 05:32:05 +00:00
parent 992835d50a
commit d4df1f2266
1 changed files with 2 additions and 3 deletions

View File

@ -2091,12 +2091,12 @@ namespace exprtk
clear_short_symbol_luts();
}
inline std::size_t variable_count()
inline std::size_t variable_count() const
{
return variable_count_;
}
inline std::size_t function_count()
inline std::size_t function_count() const
{
return function_count_;
}
@ -2422,7 +2422,6 @@ namespace exprtk
private:
typedef details::expression_node<T>* expression_ptr;
typedef T type;
struct expression_holder
{