Skip to content
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

BUG: Python wrapping needs std::string pass by value in some cases #4776

Closed

Commits on Jul 15, 2024

  1. BUG: Python wrapping needs std::string pass by value in some cases

    std::string * doesn't have a desctructor in the SWIG wrapping used
    by ITK.  As a result, spam messages are being written when
    std::string is passed by reference or returned by reference in
    certain cases.  Also, return by references are remaining as
    abstract SWIG Objects that are not easy to convert to standard
    python types.
    
    This commit fixes this issue for SpatialObjectProperty member
    functions.
    aylward committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    945f766 View commit details
    Browse the repository at this point in the history