MCPcopy Create free account
hub / github.com/MaskRay/ccls / varInt

Method varInt

src/serializer.hh:121–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

119 }
120 }
121 void varInt(int64_t n) { varUInt(uint64_t(n) << 1 ^ n >> 63); }
122 std::string take() { return std::move(buf_); }
123
124 void string(const char *x) { string(x, strlen(x)); }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected