| 1072 | } |
| 1073 | |
| 1074 | ExtensionTypeGuard::~ExtensionTypeGuard() { |
| 1075 | for (const auto& name : extension_names_) { |
| 1076 | ARROW_CHECK_OK(UnregisterExtensionType(name)); |
| 1077 | } |
| 1078 | } |
| 1079 | |
| 1080 | class GatingTask::Impl : public std::enable_shared_from_this<GatingTask::Impl> { |
| 1081 | public: |
nothing calls this directly
no test coverage detected