Skip to content

Commit bb9247d

Browse files
committed
Fixes for CI
1 parent 5958beb commit bb9247d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libraries/JANA/Components/JLightweightOutput.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ class VariadicOutput : public JHasOutputs::VariadicOutputBase {
9999
// We store this so that we can reapply it in case the user
100100
// calls SetShortNames() afterwards
101101
for (auto* db : GetDatabundles()) {
102-
db->SetNotOwnerFlag(not_owner);
102+
auto typed_db = static_cast<JLightweightDatabundleT<T>*>(db);
103+
typed_db->SetNotOwnerFlag(not_owner);
103104
}
104105
}
105106

0 commit comments

Comments
 (0)