Skip to content

Commit

Permalink
clean up warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed May 7, 2018
1 parent ca97659 commit ca6d006
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions filters/private/hexer/HexGrid.cpp
Expand Up @@ -269,6 +269,7 @@ Hexagon *HexGrid::getHexagon(int x, int y)
return hex_p;
}

/*
// Walk the outside of the hexagons to make a path. Hexagon sides are labeled:
//
// __0_
Expand All @@ -278,6 +279,7 @@ Hexagon *HexGrid::getHexagon(int x, int y)
// 2 \____/ 4
// 3
//
*/
void HexGrid::findShapes()
{
if (m_pos_roots.empty())
Expand Down
2 changes: 2 additions & 0 deletions filters/private/hexer/Hexagon.cpp
Expand Up @@ -37,6 +37,7 @@
namespace hexer
{

/*
//
// __0_
// 1 / \ 5
Expand All @@ -45,6 +46,7 @@ namespace hexer
// 2 \____/ 4
// 3
//
*/

bool Hexagon::less(const Hexagon *h) const
{
Expand Down
2 changes: 1 addition & 1 deletion filters/private/hexer/Segment.cpp
Expand Up @@ -178,7 +178,7 @@ std::ostream& operator << (std::ostream& os, const Segment &s)
{
os << s.m_hex->x() << "/" << s.m_hex->y() << " - " << s.m_side;
return os;
};
}

} // namespace hexer

0 comments on commit ca6d006

Please sign in to comment.