| 116 | } |
| 117 | |
| 118 | void EmitFromEvents::EmitProps(const std::string& tag, anchor_t anchor) { |
| 119 | if (!tag.empty() && tag != "?" && tag != "!") |
| 120 | m_emitter << VerbatimTag(tag); |
| 121 | if (anchor) |
| 122 | m_emitter << Anchor(ToString(anchor)); |
| 123 | } |
| 124 | } // namespace YAML |
nothing calls this directly
no test coverage detected