Fix includes
Lots of bad includes got put in recently, including big things, like
boost/http and beast/core. These are lots of code to parse, and leads
to files including things they didn't mean to.
Tested:
Code compiles
Signed-off-by: Ed Tanous <ed@tanous.net>
Change-Id: I38de889fdfd9b23f66a2259bb30bf6584345e77f
diff --git a/http/http_client.hpp b/http/http_client.hpp
index f4c3346..93c2a60 100644
--- a/http/http_client.hpp
+++ b/http/http_client.hpp
@@ -14,9 +14,10 @@
// limitations under the License.
*/
#pragma once
-#include <boost/asio/strand.hpp>
-#include <boost/beast/core.hpp>
-#include <boost/beast/http.hpp>
+#include <boost/asio/steady_timer.hpp>
+#include <boost/beast/core/flat_buffer.hpp>
+#include <boost/beast/core/tcp_stream.hpp>
+#include <boost/beast/http/message.hpp>
#include <boost/beast/version.hpp>
#include <cstdlib>