summaryrefslogtreecommitdiff
path: root/include/vm_websocket.hpp
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2021-10-10 00:49:05 +0300
committerEd Tanous <ed@tanous.net>2021-10-18 18:17:53 +0300
commit5edbe947bc474743763b34a89bacf973645fefab (patch)
tree99f7d9da30fbbb365f64b99b9e7e4479c9d9e4dd /include/vm_websocket.hpp
parentf201ffb46cec98eba672a06d06951117e3829013 (diff)
downloadbmcweb-5edbe947bc474743763b34a89bacf973645fefab.tar.xz
Use less specific includes
Some of the vm includes pull in large portions of boost::process. Use more specific headers as the coding standard recomments. Tested: Code compiles. No functional changes. Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: I3e90d516c48fe01a29bfdfed272f5e4cc28e5493
Diffstat (limited to 'include/vm_websocket.hpp')
-rw-r--r--include/vm_websocket.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/vm_websocket.hpp b/include/vm_websocket.hpp
index 02f958a180..34ef82ef99 100644
--- a/include/vm_websocket.hpp
+++ b/include/vm_websocket.hpp
@@ -2,7 +2,9 @@
#include <app.hpp>
#include <boost/beast/core/flat_static_buffer.hpp>
-#include <boost/process.hpp>
+#include <boost/process/async_pipe.hpp>
+#include <boost/process/child.hpp>
+#include <boost/process/io.hpp>
#include <websocket.hpp>
#include <csignal>