From 1af8faa48191a9d92ccff04fc0492d0a5141ce69 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 27 Dec 2020 16:15:57 +0000 Subject: Allow recursion betwen process and handleError --- icespider/core/core.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/icespider/core/core.cpp b/icespider/core/core.cpp index aa1f02a..989dcfb 100644 --- a/icespider/core/core.cpp +++ b/icespider/core/core.cpp @@ -61,6 +61,7 @@ namespace IceSpider { } void + // NOLINTNEXTLINE(misc-no-recursion) Core::process(IHttpRequest * request, const IRouteHandler * route) const { try { @@ -79,6 +80,7 @@ namespace IceSpider { } void + // NOLINTNEXTLINE(misc-no-recursion) Core::handleError(IHttpRequest * request, const std::exception & exception) const { auto errorHandlers = AdHoc::PluginManager::getDefault()->getAll(); -- cgit v1.2.3