Don't use deprecated asio functions
This code used a number of asio functions that have been deprecated.
This patch replaces them with their new equivalents, and enabled
BOOST_ASIO_NO_DEPRECATED.
Change-Id: I98bddba4c7d72a53ceca9455429828e60f06c5e0
Signed-off-by: Ed Tanous <edtanous@google.com>
diff --git a/src/PSUEvent.cpp b/src/PSUEvent.cpp
index 1dd98ca..a065158 100644
--- a/src/PSUEvent.cpp
+++ b/src/PSUEvent.cpp
@@ -220,7 +220,7 @@
void PSUSubEvent::restartRead()
{
std::weak_ptr<PSUSubEvent> weakRef = weak_from_this();
- waitTimer.expires_from_now(std::chrono::milliseconds(eventPollMs));
+ waitTimer.expires_after(std::chrono::milliseconds(eventPollMs));
waitTimer.async_wait([weakRef](const boost::system::error_code& ec) {
if (ec == boost::asio::error::operation_aborted)
{