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 5958beb commit bb9247dCopy full SHA for bb9247d
src/libraries/JANA/Components/JLightweightOutput.h
@@ -99,7 +99,8 @@ class VariadicOutput : public JHasOutputs::VariadicOutputBase {
99
// We store this so that we can reapply it in case the user
100
// calls SetShortNames() afterwards
101
for (auto* db : GetDatabundles()) {
102
- db->SetNotOwnerFlag(not_owner);
+ auto typed_db = static_cast<JLightweightDatabundleT<T>*>(db);
103
+ typed_db->SetNotOwnerFlag(not_owner);
104
}
105
106
0 commit comments