Skip to content

Commit

Permalink
macOS...
Browse files Browse the repository at this point in the history
  • Loading branch information
mhekkel committed Jan 22, 2024
1 parent 5d4534f commit 13ab1ca
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions include/cif++/validate.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,16 @@ struct type_validator

struct item_alias
{
item_alias(const std::string &alias_name, const std::string &dictionary, const std::string &version)
: m_name(alias_name)
, m_dict(dictionary)
, m_vers(version)
{
}

item_alias(const item_alias &) = default;
item_alias &operator=(const item_alias &) = default;

std::string m_name; ///< The alias_name
std::string m_dict; ///< The dictionary in which it was known
std::string m_vers; ///< The version of the dictionary
Expand Down

0 comments on commit 13ab1ca

Please sign in to comment.