Skip to content

Commit

Permalink
Fix doxygen mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
pramsey committed Aug 12, 2024
1 parent ec6423c commit 1f74a17
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions capi/geos_c.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -5209,8 +5209,7 @@ extern char GEOS_DLL GEOSPreparedWithin(
* true if the patterns are consistent and false otherwise.
* \param pg1 The prepared geometry
* \param g2 The geometry to test
* \param pat The DE9IM pattern to test
* \returns 1 on true, 0 on false, 2 on exception
* \returns The DE9IM relate pattern string
* \see GEOSPrepare
* \see GEOSRelate
* \see GEOSPreparedRelatePattern
Expand All @@ -5227,7 +5226,8 @@ extern char GEOS_DLL * GEOSPreparedRelate(
* prepared and provided geometry.
* \param pg1 The prepared geometry
* \param g2 The geometry to test
* \returns The DE9IM relate pattern string
* \param pat The DE9IM pattern to test
* \returns 1 on true, 0 on false, 2 on exception
* \see GEOSPrepare
* \see GEOSRelatePattern
* \see GEOSPreparedRelate
Expand Down
4 changes: 2 additions & 2 deletions include/geos/geom/prep/PreparedGeometry.h
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ class GEOS_DLL PreparedGeometry {
* @param geom the Geometry to test the
* @return the DE9IM matrix
*/
virtual std::unique_ptr<IntersectionMatrix> relate(const geom::Geometry* g) const = 0;
virtual std::unique_ptr<IntersectionMatrix> relate(const geom::Geometry* geom) const = 0;

/** \brief
* Compares the prepared geometry to the given geometry
Expand All @@ -248,7 +248,7 @@ class GEOS_DLL PreparedGeometry {
* @param pat the DE9IM pattern
* @return true if the patterns are consistent
*/
virtual bool relate(const geom::Geometry* g, const std::string& pat) const = 0;
virtual bool relate(const geom::Geometry* geom, const std::string& pat) const = 0;

};

Expand Down

0 comments on commit 1f74a17

Please sign in to comment.