From 5c5df2e7edd71a8b8cedb176f852f57a3448c8e3 Mon Sep 17 00:00:00 2001 From: Marcel Schneider Date: Fri, 30 Apr 2021 09:45:49 +0200 Subject: [PATCH] Avoid compilation errors about ambigouos "byte". Not sure what exactly made that happen, but this change fixes it. --- UpdateStream.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/UpdateStream.cc b/UpdateStream.cc index d413422..d8e1085 100644 --- a/UpdateStream.cc +++ b/UpdateStream.cc @@ -12,6 +12,7 @@ namespace pEp { namespace UpdateClient { using namespace CryptoPP; + using byte = CryptoPP::byte; UpdateDevice::UpdateDevice(const product p) : _https({HTTPSDevice()}, ios::binary), _p(p),