-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maintenance cleanup on dataset.rs
#447
Conversation
Moved non-core Dataset methods into respective `raster` or `vector` modules.
aaabd74
to
7f5d993
Compare
@@ -611,7 +557,7 @@ impl Drop for FieldDefn { | |||
} | |||
|
|||
impl MajorObject for FieldDefn { | |||
unsafe fn gdal_object_ptr(&self) -> GDALMajorObjectH { | |||
fn gdal_object_ptr(&self) -> GDALMajorObjectH { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sneaky!
bors r=lnicola |
Build succeeded! The publicly hosted instance of bors-ng is deprecated and will go away soon. If you want to self-host your own instance, instructions are here. If you want to switch to GitHub's built-in merge queue, visit their help page. |
CHANGES.md
if knowledge of this change could be valuable to users.Changes:
dataset.rs
into their own or related files.raster
orvector
modules. Aims to simplify maintainability via "separation of concerns".unsafe
from pointer accessor methods.Possibly breaking changes:
LayerIterator
,LayerOptions
andTransaction
tocrate::vector
.Aside: The impetus for this refactor is to focus the changes necessary for adding
Dataset
to #445. But even if that PR takes a different route, this change will benefit long-term maintenance.