summaryrefslogtreecommitdiff
path: root/include/kvm_websocket.hpp
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2023-05-25 20:03:14 +0300
committerEd Tanous <edtanous@google.com>2023-05-25 20:06:29 +0300
commitfaf100f963c9cd8c81c277ad6bc188eecd0fc12b (patch)
tree0ea8561f7561eb5f196f290394430e3b316c0155 /include/kvm_websocket.hpp
parentcf0e004c3c13f4955f98b315fc58cf81c3f4a32b (diff)
downloadbmcweb-faf100f963c9cd8c81c277ad6bc188eecd0fc12b.tar.xz
Fix some includes
System includes should be included with <>, in-tree includes should be included with "". This was found manually, with the help of the following grep statement[1]. git grep -o -h "#include .*" | sort | uniq Tested: Code compiles Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: I1a6b2a5ba35ccbbb61c67b7c4b036a2d7b3a36a3
Diffstat (limited to 'include/kvm_websocket.hpp')
-rw-r--r--include/kvm_websocket.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/kvm_websocket.hpp b/include/kvm_websocket.hpp
index 942e9c607e..8ea3434832 100644
--- a/include/kvm_websocket.hpp
+++ b/include/kvm_websocket.hpp
@@ -1,11 +1,11 @@
#pragma once
#include "app.hpp"
#include "async_resp.hpp"
+#include "websocket.hpp"
#include <sys/socket.h>
#include <boost/container/flat_map.hpp>
-#include <websocket.hpp>
namespace crow
{