Shally-Katariya opened a new pull request, #50258: URL: https://github.com/apache/arrow/pull/50258
### Rationale for this change Apache Arrow no longer supports the OpenSUSE 15.5 build configuration that required explicit `shared_ptr` and `unique_ptr` constructions. This PR removes obsolete OpenSUSE 15.5-specific workarounds and simplifies the affected return statements by relying on standard implicit conversions. ### What changes are included in this PR? * Removed OpenSUSE 15.5-specific workaround comments. * Replaced explicit `std::shared_ptr<T>(std::move(...))` constructions with direct returns. * Replaced explicit `std::unique_ptr<T>(std::move(...))` constructions with direct returns. * Simplified code in the affected Arrow C++ source files without changing functionality. ### Are these changes tested? Yes. The changes were verified by building the affected components and running the relevant compute test suite: ```bash ninja arrow-compute-tests ctest -R "arrow-compute" --output-on-failure ``` All tests passed successfully. ### Are there any user-facing changes? No. This change is an internal code cleanup and does not affect public APIs, behavior, or user-facing functionality. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
