| 224 | Value::Value(Value && other) noexcept = default; |
| 225 | |
| 226 | Value & Value::operator=(Value && other) noexcept = default; |
| 227 | |
| 228 | Value::~Value() = default; |
| 229 | |
| 230 | Value Value::make_bool(bool value) { |
| 231 | Value out; |
| 232 | out.kind_ = Kind::Bool; |
| 233 | out.bool_value_ = value; |
| 234 | return out; |
no outgoing calls
no test coverage detected