Merge pull request #40 from ivancich/wip-change-client-rec-init

Change ClientRec's initalization of indirect intrusive heap data
This commit is contained in:
Eric Ivancich 2017-09-27 13:23:42 -04:00 committed by GitHub
commit 93f760c57c

View File

@ -296,11 +296,11 @@ namespace crimson {
// an idle client becoming unidle
double prop_delta = 0.0;
c::IndIntruHeapData reserv_heap_data = 0;
c::IndIntruHeapData lim_heap_data = 0;
c::IndIntruHeapData ready_heap_data = 0;
c::IndIntruHeapData reserv_heap_data {};
c::IndIntruHeapData lim_heap_data {};
c::IndIntruHeapData ready_heap_data {};
#if USE_PROP_HEAP
c::IndIntruHeapData prop_heap_data = 0;
c::IndIntruHeapData prop_heap_data {};
#endif
public: