| 211 | } |
| 212 | |
| 213 | const char * context::mk_external_string(std::string && str) { |
| 214 | m_string_buffer = std::move(str); |
| 215 | return m_string_buffer.c_str(); |
| 216 | } |
| 217 | |
| 218 | expr * context::mk_numeral_core(rational const & n, sort * s) { |
| 219 | expr* e = nullptr; |
no test coverage detected