| 37 | std::optional{ std::get<int64_t>(integral_) } : std::nullopt; |
| 38 | } |
| 39 | bool ErrorCode::Empty() const |
| 40 | { |
| 41 | return std::holds_alternative<std::monostate>(integral_); |
| 42 | } |
| 43 | bool ErrorCode::Resolve(const IErrorCodeResolver& resolver) |
| 44 | { |
| 45 | if (!Empty() && HasTypeInfo()) { |
no outgoing calls
no test coverage detected