Changeset 19255 for trunk/Mars/mfileio
- Timestamp:
- 10/22/18 18:43:00 (6 years ago)
- Location:
- trunk/Mars/mfileio
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mfileio/MFitsArray.cc
r14869 r19255 92 92 continue; 93 93 94 #if ROOT_VERSION_CODE < ROOT_VERSION(6,00,00) 94 95 if (dataMember->Property() & ( G__BIT_ISENUM | G__BIT_ISSTATIC)) 95 96 continue; 96 97 #else 98 if (dataMember->Property() & ( EProperty::kIsEnum | EProperty::kIsStatic)) 99 continue; 100 #endif 97 101 if (strcmp(dataMember->GetTrueTypeName(), "TClass*") == 0) 98 102 continue; -
trunk/Mars/mfileio/MWriteFitsFile.cc
r18957 r19255 783 783 continue; 784 784 785 #if ROOT_VERSION_CODE < ROOT_VERSION(6,00,00) 785 786 if (dataMember->Property() & ( G__BIT_ISENUM | G__BIT_ISSTATIC)) 786 787 // we cannot store this 787 788 continue; 789 #else 790 if (dataMember->Property() & ( EProperty::kIsEnum | kIsStatic)) 791 // we cannot store this 792 continue; 793 #endif 788 794 789 795 if (strcmp(dataMember->GetTrueTypeName(), "TClass*") == 0) … … 889 895 // continue; 890 896 897 #if ROOT_VERSION_CODE < ROOT_VERSION(6,00,00) 891 898 if (dataMember->Property() & G__BIT_ISCLASS) 899 #else 900 if (dataMember->Property() & EProperty::kIsClass) 901 #endif 892 902 { 893 903 // special treatment for classes
Note:
See TracChangeset
for help on using the changeset viewer.