1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2024-11-27 00:43:47 +00:00

Minor style change.

This commit is contained in:
King_DuckZ 2017-05-25 00:51:39 +01:00
parent ea55602f6b
commit 5d4041aed8

View file

@ -32,7 +32,7 @@
namespace std { namespace std {
template<> template<>
struct hash<boost::string_ref> { struct hash<boost::string_ref> {
std::size_t operator() (boost::string_ref const& parStr) const { std::size_t operator() (const boost::string_ref& parStr) const {
return boost::hash_range(parStr.begin(), parStr.end()); return boost::hash_range(parStr.begin(), parStr.end());
} }
}; };