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/PSUSensor.cpp b/src/PSUSensor.cpp
index 049ae5c..763a926 100644
--- a/src/PSUSensor.cpp
+++ b/src/PSUSensor.cpp
@@ -146,7 +146,7 @@
void PSUSensor::restartRead(void)
{
std::weak_ptr<PSUSensor> weakRef = weak_from_this();
- waitTimer.expires_from_now(std::chrono::milliseconds(sensorPollMs));
+ waitTimer.expires_after(std::chrono::milliseconds(sensorPollMs));
waitTimer.async_wait([weakRef](const boost::system::error_code& ec) {
if (ec == boost::asio::error::operation_aborted)
{