| 21 | } |
| 22 | |
| 23 | node_data::node_data() |
| 24 | : m_isDefined(false), |
| 25 | m_mark(Mark::null_mark()), |
| 26 | m_type(NodeType::Null), |
| 27 | m_tag{}, |
| 28 | m_style(EmitterStyle::Default), |
| 29 | m_scalar{}, |
| 30 | m_sequence{}, |
| 31 | m_seqSize(0), |
| 32 | m_map{}, |
| 33 | m_undefinedPairs{} {} |
| 34 | |
| 35 | void node_data::mark_defined() { |
| 36 | if (m_type == NodeType::Undefined) |
nothing calls this directly
no test coverage detected