to be consistent with the forward declaration. C++ standard does not
differentiate class from struct in this perspective. but Clang warngs at
seeing it. so silence the warning.
Signed-off-by: Kefu Chai <kchai@redhat.com>
perf_service->remove_from_collection();
}
-struct SeastoreCollection final : public FuturizedCollection {
+class SeastoreCollection final : public FuturizedCollection {
+public:
template <typename... T>
SeastoreCollection(T&&... args) :
FuturizedCollection(std::forward<T>(args)...) {}