summaryrefslogtreecommitdiff
path: root/src/libcamera
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcamera')
-rw-r--r--src/libcamera/pipeline/rkisp1/timeline.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcamera/pipeline/rkisp1/timeline.h b/src/libcamera/pipeline/rkisp1/timeline.h
index 88f99329..0c37b06f 100644
--- a/src/libcamera/pipeline/rkisp1/timeline.h
+++ b/src/libcamera/pipeline/rkisp1/timeline.h
@@ -22,7 +22,7 @@ public:
FrameAction(unsigned int frame, unsigned int type)
: frame_(frame), type_(type) {}
- virtual ~FrameAction() {}
+ virtual ~FrameAction() = default;
unsigned int frame() const { return frame_; }
unsigned int type() const { return type_; }
@@ -38,7 +38,7 @@ class Timeline
{
public:
Timeline();
- virtual ~Timeline() {}
+ virtual ~Timeline() = default;
virtual void reset();
virtual void scheduleAction(std::unique_ptr<FrameAction> action);