commit | e63dea0875a70ff50f430a4bdc84b646a56b9ce7 | [log] [tgz] |
---|---|---|
author | Jason M. Bills <jason.m.bills@linux.intel.com> | Thu Aug 27 12:07:35 2020 -0700 |
committer | Jason M. Bills <jason.m.bills@linux.intel.com> | Thu Aug 27 12:07:35 2020 -0700 |
tree | 6c53a0c4cb79214c242ffb49ab77536cd1b9bbda | |
parent | 699b565d02ab0b590dda160bc0c8943e36d406bd [diff] |
Fix missing includes Likey due to https://github.com/openbmc/sdbusplus/commit/38ab5ecfe3c51501a9380e2c30dbb5fdd88cf4f9 Some Boost features that were missing from being included made the build stop working. Fix them. Change-Id: Ib19702dbb39a007e7badfe87f980b264ffde82f5 Signed-off-by: Jason M. Bills <jason.m.bills@linux.intel.com>
diff --git a/power-control-x86/src/power_control.cpp b/power-control-x86/src/power_control.cpp index b8bb313..30844d3 100644 --- a/power-control-x86/src/power_control.cpp +++ b/power-control-x86/src/power_control.cpp
@@ -18,7 +18,9 @@ #include <sys/sysinfo.h> #include <systemd/sd-journal.h> +#include <boost/asio/io_service.hpp> #include <boost/asio/posix/stream_descriptor.hpp> +#include <boost/asio/steady_timer.hpp> #include <boost/container/flat_map.hpp> #include <boost/container/flat_set.hpp> #include <gpiod.hpp>