Allow routes with 5 wildcards

We don't have any routes that use 5 wildcards, but clearly someone uses
it because of the bug #270.  There's no reason not to fix this.

Ideally we would support an arbitrary number of wildcards, but that's a
template problem for another day.

Tested: No way to test, inspection only.

Change-Id: I5de75f5288124e84c153518966d658e1c899f6d5
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/http/routing.hpp b/http/routing.hpp
index 6ab1327..562abaf 100644
--- a/http/routing.hpp
+++ b/http/routing.hpp
@@ -431,7 +431,7 @@
             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)