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/fcgi/main.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/fcgi/main.cpp')
-rw-r--r-- | icespider/fcgi/main.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/icespider/fcgi/main.cpp b/icespider/fcgi/main.cpp index 7191310..8402501 100644 --- a/icespider/fcgi/main.cpp +++ b/icespider/fcgi/main.cpp @@ -1,7 +1,7 @@ -#include <visibility.h> -#include "fcgiRequest.h" #include "cgiRequest.h" #include "core.h" +#include "fcgiRequest.h" +#include <visibility.h> using namespace IceSpider; @@ -28,4 +28,3 @@ main(int argc, char ** argv, char ** env) } return 0; } - |