Skip to content

Commit

Permalink
fixed wrong argument name fore GeoLocationUTM
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-urban committed Nov 16, 2023
1 parent 3477ead commit 4d37420
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ project(
'cpp',
license: 'MPL-2.0',

version: '0.14.0',
version: '0.14.1',
default_options: ['warning_level=2', 'buildtype=release', 'cpp_std=c++20'],
meson_version: '>=1.1' #first version to support c++20 on macos
)
Expand Down
2 changes: 1 addition & 1 deletion src/pymodule/datastructures/c_geolocationutm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void init_c_geolocationutm(py::module& m)
DOC(themachinethatgoesping, navigation, datastructures, GeoLocationUTM))
.def(py::init<const GeoLocationLocal&, int, bool>(),
DOC_GeoLocationUTM(GeoLocationUTM_2),
py::arg("geolocationlatlon"),
py::arg("geolocationlocal"),
py::arg("utm_zone"),
py::arg("northern_hemisphere"))
.def(py::init<const GeoLocationLatLon&, int>(),
Expand Down

0 comments on commit 4d37420

Please sign in to comment.