Closed knoepfel closed 2 years ago
This issue has been migrated from https://cdcvs.fnal.gov/redmine/issues/25578 (FNAL account required) Originally created by @PetrilloAtWork on 2021-03-03 03:19:37
It appears that art::TFileDirectory::make() and art::TFileDirectory::makeAndRegister() are marked const, while art::TFileDirectory::mkdir() is not. I daresay the latter might be as const as the former two...
art::TFileDirectory::make()
art::TFileDirectory::makeAndRegister()
const
art::TFileDirectory::mkdir()
Comment by @knoepfel on 2021-03-08 16:22:20
We will investigate.
This appears to have been an oversight. The member function has now been marked const.
This issue has been migrated from https://cdcvs.fnal.gov/redmine/issues/25578 (FNAL account required) Originally created by @PetrilloAtWork on 2021-03-03 03:19:37
It appears that
art::TFileDirectory::make()
andart::TFileDirectory::makeAndRegister()
are markedconst
, whileart::TFileDirectory::mkdir()
is not. I daresay the latter might be asconst
as the former two...