| 183 | |
| 184 | |
| 185 | static string attr_str(const ParamAttrs &attr) { |
| 186 | stringstream ss; |
| 187 | ss << attr; |
| 188 | return std::move(ss).str(); |
| 189 | } |
| 190 | |
| 191 | Input::Input(Type &type, string &&name) |
| 192 | : Value(type, std::string(name)), smt_name(std::move(name)) {} |
no test coverage detected