| Auto-Submit | +1 |
| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Use absl::flat_hash_map in url_template
Replace use of std::unordered_map with absl::flat_hash_map in the
parameters of url_template::Expand(). This reduces CPU and memory usage.
The choice of absl::flat_hash_map rather than base::flat_map was because
QUICHE already uses absl::flat_hash_map for this purpose so it avoids
a container conversion.
Remove "using std::string" from header file url_template.h. It causes
namespace pollution and is a style guide violation.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |