| 3930 | } |
| 3931 | |
| 3932 | static inline bool string(exprtk::symbol_table<T>& symbol_table, const std::string& string_name, const std::string& str) |
| 3933 | { |
| 3934 | exprtk::details::stringvar_node<T>* str_node = symbol_table.get_stringvar(string_name); |
| 3935 | |
| 3936 | if (str_node) |
| 3937 | return (str_node->ref() == str); |
| 3938 | else |
| 3939 | return false; |
| 3940 | } |
| 3941 | }; |
| 3942 | |
| 3943 | { |
nothing calls this directly
no outgoing calls
no test coverage detected