diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-06-13 23:12:32 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-06-13 23:12:32 +0100 |
commit | 1af14f1087fc38bba1f1110316aa58fcab35c1d9 (patch) | |
tree | f4a4bc8548a50cf1eba6bbc98a4109d6984e6403 /icespider/fcgi/main.cpp | |
parent | Fix compilation with gcc-15 (diff) | |
download | icespider-1af14f1087fc38bba1f1110316aa58fcab35c1d9.tar.bz2 icespider-1af14f1087fc38bba1f1110316aa58fcab35c1d9.tar.xz icespider-1af14f1087fc38bba1f1110316aa58fcab35c1d9.zip |
Update to C++23 and fix lots of warnings
Diffstat (limited to 'icespider/fcgi/main.cpp')
-rw-r--r-- | icespider/fcgi/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/icespider/fcgi/main.cpp b/icespider/fcgi/main.cpp index b4b9052..4746f53 100644 --- a/icespider/fcgi/main.cpp +++ b/icespider/fcgi/main.cpp @@ -19,14 +19,14 @@ main(int argc, char ** argv, char ** env) FCGX_InitRequest(&request, 0, 0); while (FCGX_Accept_r(&request) == 0) { - FcgiRequest r(&core, &request); - core.process(&r); + FcgiRequest req(&core, &request); + core.process(&req); FCGX_Finish_r(&request); } } else { - CgiRequest r(&core, argc, argv, env); - core.process(&r); + CgiRequest req(&core, argc, argv, env); + core.process(&req); } return 0; } |