Merge remote-tracking branch 'origin/topic/neverlord/hide-caf'

* origin/topic/neverlord/hide-caf:
  Fix GCC builds and string output for Broker errors
  Update to latest Broker without public CAF dep
This commit is contained in:
Robin Sommer 2022-02-07 16:24:06 +01:00
commit 5f1f005142
No known key found for this signature in database
GPG key ID: 6BEDA4DA6B8B23E3
34 changed files with 393 additions and 1066 deletions

View file

@ -623,7 +623,7 @@ broker::expected<broker::data> X509Val::DoSerialize() const
bool X509Val::DoUnserialize(const broker::data& data)
{
auto s = caf::get_if<std::string>(&data);
auto s = broker::get_if<std::string>(&data);
if ( ! s )
return false;