| 36 | } |
| 37 | |
| 38 | SerializationNode *SerializationNode::getNextSiblingReq(const char *name) |
| 39 | { |
| 40 | auto node = this->getNextSiblingOpt(name); |
| 41 | if (!node) |
| 42 | { |
| 43 | throw SerializationException(format("Missing sibling of \"%s\"", name), this); |
| 44 | } |
| 45 | return node; |
| 46 | } |
| 47 | |
| 48 | using namespace pugi; |
| 49 | class XMLSerializationArchive; |
nothing calls this directly
no test coverage detected