dbregman

Results 7 comments of dbregman

@alexcrichton @roqvist I discovered that in order for a vcpkg version of curl to be picked up by the current build script, the environment variable VCPKGRS_DYNAMIC must be set. I...

+1 for this, --patch-from is truly amazing, but lack of support for >2GiB is a problem for me.

It's not quite enough to just replace vector with deque. The memory inside a deque isn't guaranteed to be contiguous like a vector, so any code that assumes that needs...

From https://en.cppreference.com/w/cpp/container/deque: `Insertion or removal of elements at the end or beginning - constant O(1)` so std::deque has the right complexity characteristics. It also has the advantage of being immediately...

16 byte blocks is quite surprising, which system is that? In any case, I'm certainly not opposed to using an even better solution than a std::deque. Any growable ringbuffer should...

I confirmed the std lib shipped by Microsoft uses 16 byte blocks. Surprising and good to know. It seems deque should be avoided for this kind of use case if...