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 6232698 commit cc2b70dCopy full SHA for cc2b70d
1 file changed
src/DataSource.cc
@@ -21,6 +21,8 @@ class PodioColumnReader : public ROOT::Detail::RDF::RColumnReaderBase {
21
public:
22
explicit PodioColumnReader(const podio::CollectionBase** ptr) : fPtr(ptr) {
23
}
24
+ PodioColumnReader(const PodioColumnReader&) = delete;
25
+ PodioColumnReader& operator=(const PodioColumnReader&) = delete;
26
void* GetImpl(Long64_t) override {
27
// Return the actual collection pointer (T*), not the address of the storage (T**)
28
// RColumnReaderBase::Get<T> does *static_cast<T*>(GetImpl()), so we return the T* itself
0 commit comments