Dominik Charousset

Results 95 issues of Dominik Charousset

See Broker-side PR https://github.com/zeek/broker/pull/487

CI: Full

Same motivation as https://github.com/actor-framework/actor-framework/pull/2198: we want to move away from `std::ostream` & friends.

With `caf::detail::format_to`, we have better tools available today than we had when originally implementing our logger. Time to switch to the new tools and use `FILE*` handles directly instead of...

We currently have various inspector in the CAF main namespace: - `json_reader` - `json_writer` - `stringification_inspector` - ... To at least get the implementations details out of the public headers,...

We want to phase out our `caf::expected` eventually and implement it as: ```c++ template using expected = std::expected; ``` However, our version is API incompatible with `std::expected` at the moment....

When moving to CI builds from Jenkins to GH actions (https://github.com/actor-framework/actor-framework/pull/2139), our release builds broke. In Jenkins we had disabled a those warnings: ``` ['alpinelinux-3.21', [ numCores: 4, tags: ['docker'],...

Followup to #2073: we have yet to add example code showcasing `multipart_reader` and `multipart_writer`. Once we have examples, we should also mention the new feature in the manual.

low priority

Relates #249.

Modernize our format headers with more C++20 concepts.

I meant to look into https://github.com/zeek/broker/issues/365 again to see if newer `clang-tidy` versions maybe fixed the issue. Turns out our `clang-tidy` CI check doesn't do anything anymore since we've moved...