From: Dongsun Lee Date: Mon, 9 Dec 2019 06:51:30 +0000 (+0900) Subject: Fix build failure in case of boost upgrade(1.66.0->1.71.0) X-Git-Tag: accepted/tizen/unified/20191212.123713^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=77cf2690ca993b619e9013884bb40a88348ed0cf;p=platform%2Fcore%2Fsecurity%2Fdevice-certificate-manager.git Fix build failure in case of boost upgrade(1.66.0->1.71.0) Change-Id: Ia5a0688c7712ead820fae1e5231eeb11fc3fde43 Signed-off-by: Dongsun Lee --- diff --git a/shared/protobuf_asio.h b/shared/protobuf_asio.h index c921186..c7ff16d 100644 --- a/shared/protobuf_asio.h +++ b/shared/protobuf_asio.h @@ -94,7 +94,7 @@ public: } catch(...) { handler( boost::system::errc::make_error_code( - boost::system::posix::not_enough_memory), + boost::system::errc::not_enough_memory), 0); return; } @@ -105,7 +105,7 @@ public: } else { handler( boost::system::errc::make_error_code( - boost::system::posix::message_size), + boost::system::errc::message_size), 0); } } else {