MCPcopy Create free account
hub / github.com/chronoxor/FastBinaryEncoding / State

Enum State

proto/proto.h:63–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61#endif
62
63enum class State : uint8_t
64{
65 unknown = (uint8_t)0x00u,
66 invalid = (uint8_t)0x01u,
67 initialized = (uint8_t)0x02u,
68 calculated = (uint8_t)0x04u,
69 broken = (uint8_t)0x08u,
70 good = initialized | calculated,
71 bad = unknown | invalid | broken,
72};
73
74FBE_ENUM_FLAGS(State)
75

Callers 1

get_fieldsMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected