| Code-Review | +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. |
| Code-Review | +1 |
| Commit-Queue | +2 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Replace `std::set` with `absl::flat_hash_set`.
The Chromium containers guide
(https://chromium.googlesource.com/chromium/src/+/HEAD/base/containers/README.md)
recommends using `absl::flat_hash_set` as a default set choice when
stable iteration order and pointer stability isn't needed. It generally
perform better and require less overhead than STL sets.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +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. |
| Code-Review | +1 |
| Commit-Queue | +2 |
LGTM
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Replace `std::set` with `absl::flat_hash_set`.
The Chromium containers guide
(https://chromium.googlesource.com/chromium/src/+/HEAD/base/containers/README.md)
recommends using `absl::flat_hash_set` as a default set choice when
stable iteration order and pointer stability isn't needed. It generally
perform better and require less overhead than STL sets.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
const std::string_view name = script_value.name;I think we can keep this as `string` so we don't have to convert it back on line 284. a`bsl::flat_hash_set<std::string_view>` should handle a `std::string` key efficiently via implicit conversion. But I'm not 100% sure so I'm ok with the change too
| 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. |
| Auto-Submit | +1 |
I think we can keep this as `string` so we don't have to convert it back on line 284. a`bsl::flat_hash_set<std::string_view>` should handle a `std::string` key efficiently via implicit conversion. But I'm not 100% sure so I'm ok with the change too
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Commit-Queue | +2 |
LGTM
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Replace `std::set` with `absl::flat_hash_set`.
The Chromium containers guide
(https://chromium.googlesource.com/chromium/src/+/HEAD/base/containers/README.md)
recommends using `absl::flat_hash_set` as a default set choice when
stable iteration order and pointer stability isn't needed. It generally
perform better and require less overhead than STL sets.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |