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/IntelCPUSensor.cpp b/src/IntelCPUSensor.cpp
index 9cd0409..fa26332 100644
--- a/src/IntelCPUSensor.cpp
+++ b/src/IntelCPUSensor.cpp
@@ -114,7 +114,7 @@
void IntelCPUSensor::restartRead(void)
{
std::weak_ptr<IntelCPUSensor> weakRef = weak_from_this();
- waitTimer.expires_from_now(std::chrono::milliseconds(pollTime));
+ waitTimer.expires_after(std::chrono::milliseconds(pollTime));
waitTimer.async_wait([weakRef](const boost::system::error_code& ec) {
if (ec == boost::asio::error::operation_aborted)
{