MCPcopy Create free account
hub / github.com/fmtlib/fmt / slow_float

Method slow_float

test/format-impl-test.cc:300–300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

298 float value;
299
300 constexpr explicit slow_float(float val = 0) : value(val) {}
301 operator float() const { return value; }
302 auto operator-() const -> slow_float { return slow_float(-value); }
303};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected