Commit 7c3176b7 authored by Dominik Charousset's avatar Dominik Charousset

Fix uninitialized member warning

parent 0c23fd76
......@@ -314,7 +314,9 @@ void middleman::dispose() {
delete this;
}
middleman::middleman(const backend_factory& factory) : backend_(factory()) {
middleman::middleman(const backend_factory& factory)
: backend_(factory()),
max_throughput_(std::numeric_limits<size_t>::max()) {
// nop
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment