| 16 | } |
| 17 | |
| 18 | void throw_attribute_exists_error(const std::string& name) { |
| 19 | std::stringstream err_msg; |
| 20 | err_msg << "Attribute " << name << " already exists."; |
| 21 | throw RuntimeError(err_msg.str()); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | using namespace WireAttributesHelper; |
no test coverage detected