From 55df5fe04c9d13ae286f1b954761bb6fe39d43f5 Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Sun, 10 May 2020 00:03:05 +0200 Subject: [PATCH] Remove useless stuff --- IO.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/IO.h b/IO.h index 5955d7a..aec26a8 100644 --- a/IO.h +++ b/IO.h @@ -26,14 +26,6 @@ struct TSample { volatile uint16_t sample; volatile uint8_t control; - - TSample operator=(const volatile TSample& other) volatile { - return {other.sample, other.control}; - } - - volatile TSample operator=(const TSample& other) volatile { - return {other.sample, other.control}; - } }; class CIO {