| 263 | } |
| 264 | |
| 265 | void Element::addAttribute(std::string_view _key, std::string_view _value) |
| 266 | { |
| 267 | mAttributes.emplace_back(_key, _value); |
| 268 | } |
| 269 | |
| 270 | void Element::removeAttribute(std::string_view _key) |
| 271 | { |
no outgoing calls
no test coverage detected