MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / error_code

Class error_code

extlibs/fmt/include/fmt/os.h:125–133  ·  view source on GitHub ↗

An error code.

Source from the content-addressed store, hash-verified

123
124// An error code.
125class error_code {
126 private:
127 int value_;
128
129 public:
130 explicit error_code(int value = 0) FMT_NOEXCEPT : value_(value) {}
131
132 int get() const FMT_NOEXCEPT { return value_; }
133};
134
135#ifdef _WIN32
136namespace internal {

Callers 1

dup2Method · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected