Remove the hash method from the coordinate types from the documentation

This commit is contained in:
James P. Howard, II
2022-08-29 15:20:06 -04:00
parent a872c89b78
commit 7def091083
3 changed files with 7 additions and 0 deletions

View File

@@ -270,6 +270,8 @@ namespace kami {
} // namespace kami
//! @cond SuppressHashMethod
#define KAMI_GRID1D_H
namespace std {
template<>
struct hash<kami::GridCoord1D> {
@@ -278,5 +280,6 @@ namespace std {
}
};
} // namespace std
//! @endcond
#endif // KAMI_GRID1D_H

View File

@@ -312,6 +312,7 @@ namespace kami {
} // namespace kami
//! @cond SuppressHashMethod
namespace std {
template<>
struct hash<kami::GridCoord2D> {
@@ -320,5 +321,6 @@ namespace std {
}
};
} // namespace std
//! @endcond
#endif // KAMI_GRID2D_H

View File

@@ -312,6 +312,7 @@ namespace kami {
} // namespace kami
//! @cond SuppressHashMethod
namespace std {
template<>
struct hash<kami::HexCoord> {
@@ -320,5 +321,6 @@ namespace std {
}
};
} // namespace std
//! @endcond
#endif // KAMI_HEXGRID_H