MCPcopy Create free account
hub / github.com/BZFlag-Dev/bzflag / vector_dump

Function vector_dump

plugins/bzfscron/CronJob.cpp:23–30  ·  view source on GitHub ↗

debug util func

Source from the content-addressed store, hash-verified

21
22// debug util func
23static std::string vector_dump(std::vector<int> &iv) {
24 std::string tmp = "<";
25 for (std::vector<int>::iterator itr = iv.begin(); itr != iv.end(); ++itr) {
26 tmp += format(" %d", *itr);
27 }
28 tmp += " >";
29 return tmp;
30}
31
32CronJob::CronJob() {
33 // do nothing

Callers 1

setJobMethod · 0.85

Calls 3

formatFunction · 0.50
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected