chengm349
chengm349
I tried both (skip or while loop): //instdef.noEvents().skip(); auto& noEvents = instdef.noEvents(); auto noEventsCnt = noEvents.count(); if (0 == noEventsCnt) Ft_TRACE
What confused me is that within the same function void CMESubscriptionManager::publishStaticData(...) { ..... auto& instrumentData = const_cast(getInstrumentData(sym)); auto& instdef = std::get(instrumentData); Ft_TRACE
Today's last try: ``` void CMESubscriptionManager::publishStaticData(...) { ...... std::ostringstream ss; Ft_TRACE
Btw,my code can get non-group tag value properly.
Really appreciate your effort to guide. I am doing UT so I create a message and later to simulate I receive the message from network. I downloaded the tool in...
I did further test. 1. got a 2K buffer. 2. built a MDInstrumentDefinitionFX63 message on it by calling: - messageOriginal.wrapAndApplyHeader(buffer, 0, bufsize); - a lot of function calls on messageOriginal...
The lib should be ok in general. I solved my problem. But I leave the ticket for some other people to close. Step 4 simulate my production code. message.wrapForDecode(messageOriginal.buffer(), 0,...
inotifytools_next_event() interface could be better.
uint32_t mask{0xFFFF}; inotifytools_ignore_events_by_regex (directory_name.string().c_str(), mask); I thought all directory events will be ignored?
@dmah42 Question 1: So my code of using the lib is correct? static void BM_decimal_ctor_dbl(benchmark::State& state) { for (auto _ : state) { const MyClass d{123.67}; benchmark::DoNotOptimize(&d); } } Question...