summaryrefslogtreecommitdiff
path: root/http
diff options
context:
space:
mode:
Diffstat (limited to 'http')
-rw-r--r--http/routing.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/http/routing.hpp b/http/routing.hpp
index 6ab1327ffa..562abaf06c 100644
--- a/http/routing.hpp
+++ b/http/routing.hpp
@@ -431,7 +431,7 @@ class Router
allRules.emplace_back(std::move(ruleObject));
return *ptr;
}
- static_assert(numArgs < 5, "Max number of args supported is 5");
+ static_assert(numArgs <= 5, "Max number of args supported is 5");
}
void internalAddRuleObject(const std::string& rule, BaseRule* ruleObject)