Cleanup: Replace single-use Pair struct with std::pair.

This struct is defined in geometry_type but not used by any geometry-related
code, only for subsidy code where both parameters are cast from int to
NewsReferenceType.
This commit is contained in:
2021-04-21 13:42:30 +01:00
committed by Michael Lutz
parent bf4fe19a66
commit 5ff15443e9
3 changed files with 12 additions and 20 deletions

View File

@@ -62,10 +62,4 @@ struct PointDimension {
int height;
};
/** A pair of two integers */
struct Pair {
int a;
int b;
};
#endif /* GEOMETRY_TYPE_HPP */