From 68faccfd10db398263c251daef43db37959c38e4 Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Mon, 2 May 2016 11:22:14 -0700 Subject: [PATCH] Update Writer default destructor syntax. --- firmware/application/capture_thread.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/application/capture_thread.hpp b/firmware/application/capture_thread.hpp index 151bb21f..e6e48932 100644 --- a/firmware/application/capture_thread.hpp +++ b/firmware/application/capture_thread.hpp @@ -38,7 +38,7 @@ using namespace hackrf::one; class Writer { public: virtual bool write(const void* const buffer, const size_t bytes) = 0; - virtual ~Writer() { }; + virtual ~Writer() = default; }; class RawFileWriter : public Writer {