| 3920 | struct test |
| 3921 | { |
| 3922 | static inline bool variable(exprtk::symbol_table<T>& symbol_table, const std::string& variable_name, const T& value) |
| 3923 | { |
| 3924 | exprtk::details::variable_node<T>* var = symbol_table.get_variable(variable_name); |
| 3925 | |
| 3926 | if (var) |
| 3927 | return (!not_equal(var->ref(),value)); |
| 3928 | else |
| 3929 | return false; |
| 3930 | } |
| 3931 | |
| 3932 | static inline bool string(exprtk::symbol_table<T>& symbol_table, const std::string& string_name, const std::string& str) |
| 3933 | { |
nothing calls this directly
no test coverage detected