C++ Mathematical Expression Library (ExprTk) http://www.partow.net/programming/exprtk/index.html
This commit is contained in:
parent
992835d50a
commit
d4df1f2266
|
@ -2091,12 +2091,12 @@ namespace exprtk
|
||||||
clear_short_symbol_luts();
|
clear_short_symbol_luts();
|
||||||
}
|
}
|
||||||
|
|
||||||
inline std::size_t variable_count()
|
inline std::size_t variable_count() const
|
||||||
{
|
{
|
||||||
return variable_count_;
|
return variable_count_;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline std::size_t function_count()
|
inline std::size_t function_count() const
|
||||||
{
|
{
|
||||||
return function_count_;
|
return function_count_;
|
||||||
}
|
}
|
||||||
|
@ -2422,7 +2422,6 @@ namespace exprtk
|
||||||
private:
|
private:
|
||||||
|
|
||||||
typedef details::expression_node<T>* expression_ptr;
|
typedef details::expression_node<T>* expression_ptr;
|
||||||
typedef T type;
|
|
||||||
|
|
||||||
struct expression_holder
|
struct expression_holder
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue