[#BENCHMARK_SUSPEND] = BENCHMARK_SUSPEND :mrdocs: Allows execution of code that doesn't count toward the benchmark's time budget. Example: == Synopsis Declared in `<folly/Benchmark.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- #define BENCHMARK_SUSPEND ---- == Description BENCHMARK_START_GROUP(insertVectorBegin, n) { vector<int> v; BENCHMARK_SUSPEND { v.reserve(n); } for (unsigned int i = 0; i < n; ++i) { v.insert(v.begin(), 42); } } [.small]#Created with https://www.mrdocs.com[MrDocs]#