MCPcopy Create free account
hub / github.com/bfbbdecomp/bfbb / set

Method set

include/std/bitset.h:88–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86 bitset() {}
87 bool any() const { return base::any(); }
88 void set(size_t pos, bool val)
89 {
90 if (pos >= N)
91 {
92 __msl_error("index out of range of bitset::set");
93 }
94 base::set(pos, val);
95 }
96 void reset(size_t pos)
97 {
98 if (pos >= N)

Callers

nothing calls this directly

Calls 1

__msl_errorFunction · 0.85

Tested by

no test coverage detected