Marcus Müller
Marcus Müller
@sreevatsank1999 thanks! Do you happen to know if the code is the same on the `main` branch? If so, would you be able to open a pull request?
@michaelld a `const` member function can't modify any class instance data. Basically, the `this` pointer becomes `const` (and you'd have to imagine every single member access to be prefixed by...
In fact, at this point, even things like `nitems_read` would be non-guaranteed to be callable because they're not `const`, but #2665 strives to change that. (It's mostly an issue of...
Well, the good thing is that most of these functions really don't change any state and could really well be made `const` without touching any code, as far as I...
Very wise! From the top of my head, the main suspect for (3) here would be `check_topology`, which is a commonly used way of figuring out how many in- and...
> I think that perhaps some better handling of defines if they are verily zero should be enabled here. I think what my defines is at the moment is a...
@PeterQFR thank you!!
This very very strong regression seems to have been introduced in https://github.com/matrix-org/matrix-react-sdk/pull/11425. It is mentioned in the changelog under "Features", which is a miscategorization, on two fronts: 1. It's not...
@t3chguy I'm trying to understand the technical side of this: Why is this blocked on #2503? We clearly have a channel to exchange the "there's another instance running" information, why...