MCPcopy Create free account
hub / github.com/ValveSoftware/openvr / decodeDouble

Method decodeDouble

src/jsoncpp.cpp:792–800  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

790}
791
792bool Reader::decodeDouble(Token& token) {
793 Value decoded;
794 if (!decodeDouble(token, decoded))
795 return false;
796 currentValue().swapPayload(decoded);
797 currentValue().setOffsetStart(token.start_ - begin_);
798 currentValue().setOffsetLimit(token.end_ - begin_);
799 return true;
800}
801
802bool Reader::decodeDouble(Token& token, Value& decoded) {
803 double value = 0;

Callers

nothing calls this directly

Calls 3

swapPayloadMethod · 0.80
setOffsetStartMethod · 0.80
setOffsetLimitMethod · 0.80

Tested by

no test coverage detected