Skip to content

Commit

Permalink
Internal cleanup of map types (#32185)
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 351868095

Co-authored-by: Googler <noreply@google.com>
  • Loading branch information
Greg Grothaus and Googler committed Jan 25, 2021
1 parent 635f59f commit b1f0cd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions validator/cpp/engine/validator-internal.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1463,8 +1463,8 @@ class ParsedValidatorRules {
ValidatorRules rules_;
HtmlFormat::Code html_format_;
vector<ParsedTagSpec> tagspec_by_id_;
unordered_map<std::string, TagSpecDispatch> tagspecs_by_tagname_;
unordered_map<std::string, vector<int32_t>> ext_tag_spec_ids_by_ext_name_;
absl::node_hash_map<std::string, TagSpecDispatch> tagspecs_by_tagname_;
absl::node_hash_map<std::string, vector<int32_t>> ext_tag_spec_ids_by_ext_name_;
TagSpecDispatch empty_dispatch_;
vector<int32_t> mandatory_tagspecs_;
vector<ErrorCodeMetaData> error_codes_;
Expand Down

0 comments on commit b1f0cd3

Please sign in to comment.