mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
libcef: Format with clang-tidy (see #3632)
This commit is contained in:
@ -17,10 +17,9 @@ namespace HttpHeaderUtils {
|
||||
std::string GenerateHeaders(const HeaderMap& map) {
|
||||
std::string headers;
|
||||
|
||||
for (HeaderMap::const_iterator header = map.begin(); header != map.end();
|
||||
++header) {
|
||||
const CefString& key = header->first;
|
||||
const CefString& value = header->second;
|
||||
for (const auto& header : map) {
|
||||
const CefString& key = header.first;
|
||||
const CefString& value = header.second;
|
||||
|
||||
if (!key.empty()) {
|
||||
// Delimit with "\r\n".
|
||||
|
Reference in New Issue
Block a user