eddic / fastcgipp

fastcgi++: A C++ FastCGI and Web development platform:
https://fastcgipp.isatec.ca
GNU Lesser General Public License v3.0
310 stars 94 forks source link

Change position of virtual in Request::inProcessor declaration #65

Closed jatofg closed 5 years ago

jatofg commented 5 years ago

The parser of CLion (which uses clang, as far as I know) does not recognize the inProcessor() function of Fastcgipp::Request as virtual and shows a warning when trying to override it. This can be fixed by changing it from "bool virtual" to "virtual bool".

eddic commented 5 years ago

Nice. Thanks.