MCPcopy Create free account
hub / github.com/WallBreaker2/op / pop_back_value

Function pop_back_value

libop/memory/ProcessMemory.cpp:12–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10namespace {
11
12template <typename T> T pop_back_value(vector<T> &items) {
13 T value = items.back();
14 items.pop_back();
15 return value;
16}
17
18wstring bytesToWide(const vector<uchar> &bin, UINT cp) {
19 if (bin.empty())

Callers 2

stringcomputeFunction · 0.85
str2addressMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected