Implement data pointer clang-tidy check
readability-container-data-pointer flags one error in our codebase, but
can definitely find issues in patchsets. Fix the one error (that came
from crow), and enable the check.
Change-Id: I3045ec9a58d80300c90921dda1a2fe3859ffed7b
Signed-off-by: Ed Tanous <edtanous@google.com>
diff --git a/http/http_server.hpp b/http/http_server.hpp
index 258193a..91de8db 100644
--- a/http/http_server.hpp
+++ b/http/http_server.hpp
@@ -67,7 +67,7 @@
gmtime_r(&lastTimeT, &myTm);
dateStr.resize(100);
- size_t dateStrSz = strftime(&dateStr[0], 99,
+ size_t dateStrSz = strftime(dateStr.data(), dateStr.size() - 1,
"%a, %d %b %Y %H:%M:%S GMT", &myTm);
dateStr.resize(dateStrSz);
}