File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -52,8 +52,7 @@ class TTreeReaderArrayBase : public TTreeReaderValueBase {
52
52
53
53
std::unique_ptr<TVirtualCollectionReader> fImpl ; // Common interface to collections
54
54
55
- // FIXME: re-introduce once we have ClassDefInline!
56
- // ClassDefOverride(TTreeReaderArrayBase, 0);//Accessor to member of an object stored in a collection
55
+ ClassDefInlineOverride (TTreeReaderArrayBase, 0 );// Accessor to member of an object stored in a collection
57
56
};
58
57
59
58
class R__CLING_PTRCHECK (off) TTreeReaderUntypedArray final : public TTreeReaderArrayBase {
@@ -241,8 +240,7 @@ class R__CLING_PTRCHECK(off) TTreeReaderArray final : public ROOT::Internal::TTr
241
240
#define R__TTreeReaderArray_TypeString (T ) #T
242
241
const char *GetDerivedTypeName () const override { return R__TTreeReaderArray_TypeString (T); }
243
242
#undef R__TTreeReaderArray_TypeString
244
- // FIXME: re-introduce once we have ClassDefTInline!
245
- // ClassDefT(TTreeReaderArray, 0);//Accessor to member of an object stored in a collection
243
+ ClassDefInline (TTreeReaderArray, 0 );// Accessor to member of an object stored in a collection
246
244
};
247
245
248
246
namespace cling {
Original file line number Diff line number Diff line change @@ -150,8 +150,7 @@ class TTreeReaderValueBase {
150
150
*/
151
151
bool fOpaqueRead {false };
152
152
153
- // FIXME: re-introduce once we have ClassDefInline!
154
- // ClassDefOverride(TTreeReaderValueBase, 0);//Base class for accessors to data via TTreeReader
153
+ ClassDefInlineOverride (TTreeReaderValueBase, 0 );// Base class for accessors to data via TTreeReader
155
154
156
155
friend class ::TTreeReader;
157
156
};
@@ -238,16 +237,15 @@ class R__CLING_PTRCHECK(off) TTreeReaderValue final : public ROOT::Internal::TTr
238
237
T &operator *() { return *Get (); }
239
238
240
239
protected:
241
- // FIXME: use IsA() instead once we have ClassDefTInline
240
+ // FIXME: use IsA() instead
242
241
// / Get the template argument as a string.
243
242
const char *GetDerivedTypeName () const override
244
243
{
245
244
static const std::string sElementTypeName = GetElementTypeName (typeid (T));
246
245
return sElementTypeName .data ();
247
246
}
248
247
249
- // FIXME: re-introduce once we have ClassDefTInline!
250
- // ClassDefT(TTreeReaderValue, 0);//Accessor to data via TTreeReader
248
+ ClassDefInlineOverride (TTreeReaderValue, 0 );// Accessor to data via TTreeReader
251
249
};
252
250
253
251
namespace cling {
You can’t perform that action at this time.
0 commit comments