summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--icespider/core/core.cpp2
1 files changed, 2 insertions, 0 deletions
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<ErrorHandler>();