Fix missing include
This arguably isn't a missing include in boost::beast, but because beast
only includes iofwd (the forward declaration of iostreams) we need to
include the full header here, to support converting the verb to and from
strings.
Tested: clang-tidy stops complaining.
Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: I93a930e456617cead3ff3928d29c2bfea3163ba6
diff --git a/http/verb.hpp b/http/verb.hpp
index 8eec68a..4213604 100644
--- a/http/verb.hpp
+++ b/http/verb.hpp
@@ -2,6 +2,7 @@
#include <boost/beast/http/verb.hpp>
+#include <iostream>
#include <optional>
#include <string_view>