| 1064 | } |
| 1065 | |
| 1066 | ExtensionTypeGuard::~ExtensionTypeGuard() { |
| 1067 | for (const auto& name : extension_names_) { |
| 1068 | ARROW_CHECK_OK(UnregisterExtensionType(name)); |
| 1069 | } |
| 1070 | } |
| 1071 | |
| 1072 | class GatingTask::Impl : public std::enable_shared_from_this<GatingTask::Impl> { |
| 1073 | public: |
nothing calls this directly
no test coverage detected