We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10579b4 commit 15d9605Copy full SHA for 15d9605
src/data/adapter.h
@@ -169,6 +169,7 @@ class CSRAdapter : public detail::SingleBatchDataIter<CSRAdapterBatch> {
169
const CSRAdapterBatch& Value() const override { return batch_; }
170
size_t NumRows() const { return num_rows_; }
171
size_t NumColumns() const { return num_columns_; }
172
+ ~CSRAdapter() noexcept(false) override = default;
173
174
private:
175
CSRAdapterBatch batch_;
@@ -222,6 +223,7 @@ class DenseAdapter : public detail::SingleBatchDataIter<DenseAdapterBatch> {
222
223
224
225
226
+ ~DenseAdapter() noexcept(false) override = default;
227
228
229
DenseAdapterBatch batch_;
0 commit comments