Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/sst/core/eli/elementbuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ struct Builder

template <class NewBase>
using ChangeBase = Builder<NewBase, Args...>;

virtual ~Builder() = default;
};

template <class Base, class... CtorArgs>
Expand Down
2 changes: 2 additions & 0 deletions src/sst/core/link.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ class alignas(64) Link
@param key Key that would be passed into the eventSent() function.
*/
virtual void serializeEventAttachPointKey(SST::Core::Serialization::serializer& ser, uintptr_t& key);

virtual ~AttachPoint() = default;
};

friend class LinkPair;
Expand Down
2 changes: 2 additions & 0 deletions src/sst/core/model/element_python.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ class SSTElementPythonModuleCode
* \return full name of module as a string
*/
std::string getFullModuleName();

virtual ~SSTElementPythonModuleCode() = default;
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/sst/core/realtimeAction.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class RealTimeAction


RealTimeAction();
virtual ~RealTimeAction() = default;

/* Optional function called just before run loop starts. Passes in
* the next scheduled time of the event or 0 if the event is not
Expand Down
2 changes: 2 additions & 0 deletions src/sst/core/ssthandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,8 @@ class SSTHandlerBase<void, argT> : public SST::Core::Serialization::serializable
virtual void
serializeHandlerInterceptPointKey(SST::Core::Serialization::serializer& UNUSED(ser), uintptr_t& UNUSED(key))
{}

virtual ~InterceptPoint() = default;
};

private:
Expand Down
4 changes: 4 additions & 0 deletions src/sst/core/statapi/statbase.h
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,8 @@ struct StatisticCollector<T, true>
addData_impl(data);
}
}

virtual ~StatisticCollector() = default;
};

template <class... Args>
Expand All @@ -367,6 +369,8 @@ struct StatisticCollector<std::tuple<Args...>, false>
{
addData_impl(std::make_tuple(std::forward<InArgs>(args)...));
}

virtual ~StatisticCollector() = default;
};

////////////////////////////////////////////////////////////////////////////////
Expand Down
Loading