mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
Remove virtual from ~ComposerClientWriter
This class has no other virtual methods, and it has no subclasses, so it's unclear why it had a virtual destructor. Bug: NA Test: make Change-Id: Ic87fe6596b6d796ca11822de53af2e4e521f127d
This commit is contained in:
@@ -59,13 +59,13 @@ using aidl::android::hardware::common::NativeHandle;
|
||||
|
||||
namespace aidl::android::hardware::graphics::composer3 {
|
||||
|
||||
class ComposerClientWriter {
|
||||
class ComposerClientWriter final {
|
||||
public:
|
||||
static constexpr std::optional<ClockMonotonicTimestamp> kNoTimestamp = std::nullopt;
|
||||
|
||||
ComposerClientWriter() { reset(); }
|
||||
|
||||
virtual ~ComposerClientWriter() { reset(); }
|
||||
~ComposerClientWriter() { reset(); }
|
||||
|
||||
void reset() {
|
||||
mDisplayCommand.reset();
|
||||
|
||||
Reference in New Issue
Block a user