diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-06-07 19:03:36 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-06-07 19:03:36 +0100 |
commit | bc4333ffd2e7243ba1049de633644543f40144fe (patch) | |
tree | 1dc636a27f4185559af6d0f3ed18876afdadc7ba /icespider/testing/testRequest.cpp | |
parent | Bump Ice version (diff) | |
download | icespider-bc4333ffd2e7243ba1049de633644543f40144fe.tar.bz2 icespider-bc4333ffd2e7243ba1049de633644543f40144fe.tar.xz icespider-bc4333ffd2e7243ba1049de633644543f40144fe.zip |
Clang format and tidy
Diffstat (limited to 'icespider/testing/testRequest.cpp')
-rw-r--r-- | icespider/testing/testRequest.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/icespider/testing/testRequest.cpp b/icespider/testing/testRequest.cpp index fea77f2..c384b31 100644 --- a/icespider/testing/testRequest.cpp +++ b/icespider/testing/testRequest.cpp @@ -1,13 +1,11 @@ #include "testRequest.h" -#include <boost/algorithm/string/split.hpp> #include <boost/algorithm/string/classification.hpp> +#include <boost/algorithm/string/split.hpp> #include <formatters.h> namespace IceSpider { constexpr std::string_view slash("/"); - TestRequest::TestRequest(const Core * c, HttpMethod m, const std::string_view & p) : - IHttpRequest(c), - method(m) + TestRequest::TestRequest(const Core * c, HttpMethod m, const std::string_view & p) : IHttpRequest(c), method(m) { namespace ba = boost::algorithm; auto path = p.substr(1); @@ -158,4 +156,3 @@ namespace IceSpider { return responseHeaders; } } - |