commit | dbb59d4dd8e4fc13b1cad11fd3a093f374a2a7ed | [log] [tgz] |
---|---|---|
author | Ed Tanous <edtanous@google.com> | Tue Jan 25 11:09:55 2022 -0800 |
committer | Ed Tanous <edtanous@google.com> | Mon Feb 14 20:26:02 2022 -0800 |
tree | 12056a7663a3f8e6033d1193a61f93fccba5f600 | |
parent | 71d5d8dbf54dace8a559e593a2bc6011b7261af5 [diff] [blame] |
Enable readability-uppercase-literal-suffix We only had a few violations of this; Fix them and enable the check. Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: I159e774fd0169a91a092218ec8dc896ba9edebf4
diff --git a/http/routing.hpp b/http/routing.hpp index 8fd4558..8c4fa2f 100644 --- a/http/routing.hpp +++ b/http/routing.hpp
@@ -688,7 +688,7 @@ { for (size_t x : node->paramChildrens) { - if (x == 0u) + if (x == 0U) { continue; }