Enable 3 member function checks
The only changes were to make some functions static, which is
essentially no-op.
Changes were done by the robot.
Tested: Unit tests pass, changes no-op
Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: Id84ca2bee6f237877ba2900b2cbe4679b38a91dc
diff --git a/include/multipart_parser.hpp b/include/multipart_parser.hpp
index ee028f1..945ebf9 100644
--- a/include/multipart_parser.hpp
+++ b/include/multipart_parser.hpp
@@ -219,7 +219,7 @@
}
}
- char lower(char c) const
+ static char lower(char c)
{
return static_cast<char>(c | 0x20);
}