Skip to content

Commit

Permalink
Reorder in lexicographic order
Browse files Browse the repository at this point in the history
  • Loading branch information
shouth committed Mar 6, 2025
1 parent 40ca441 commit ed0da5d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,16 +100,16 @@ auto readAttribute(const std::string & name, const Node & node, const Scope & sc

extern template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &)
-> Boolean;
extern template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &)
-> UnsignedShort;
extern template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &)
-> UnsignedInteger;
extern template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &)
-> Double;
extern template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &)
-> syntax::Rule;
extern template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &)
-> String;
extern template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &)
-> syntax::Rule;
-> UnsignedShort;
extern template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &)
-> UnsignedInteger;

template <typename T, typename Node, typename Scope>
auto readAttribute(const std::string & name, const Node & node, const Scope & scope, T && value)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,13 @@ auto substitute(const std::string & attribute, const Scope & scope) -> String
}

template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &) -> Boolean;
template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &) -> Double;
template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &)
-> syntax::Rule;
template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &) -> String;
template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &)
-> UnsignedShort;
template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &)
-> UnsignedInteger;
template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &) -> Double;
template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &) -> String;
template auto readAttribute(const std::string &, const pugi::xml_node &, const Scope &)
-> syntax::Rule;
} // namespace reader
} // namespace openscenario_interpreter

0 comments on commit ed0da5d

Please sign in to comment.