fix some build errors

This commit is contained in:
Thomas Fussell 2016-08-10 00:42:01 -10:00
parent 05ea6d0dbd
commit 237465f731
2 changed files with 2 additions and 2 deletions

View File

@ -230,7 +230,7 @@ private:
std::string next_relationship_id(const path &part) const;
std::unordered_map<path, part_info, std::hash<hashable>> part_infos_;
std::unordered_map<path, part_info> part_infos_;
std::vector<relationship> package_relationships_;

View File

@ -179,7 +179,7 @@ namespace std {
template <>
struct hash<xlnt::path>
{
size_t operator()(const path &p) const
size_t operator()(const xlnt::path &p) const
{
return hasher(p);
}