From 41d8cbda5597c61aac6c965cc14f4fe571fe3263 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 8 Jan 2021 00:22:04 +0100 Subject: [PATCH] small form changes --- datapool/PoolEntry.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datapool/PoolEntry.h b/datapool/PoolEntry.h index d3d4cd6d..aecfce94 100644 --- a/datapool/PoolEntry.h +++ b/datapool/PoolEntry.h @@ -64,9 +64,9 @@ public: */ PoolEntry(T* initValue, uint8_t setLength = 1, bool setValid = false); - //! Explicitely deleted copy ctor, copying is not allowed! + //! Explicitely deleted copy ctor, copying is not allowed. PoolEntry(const PoolEntry&) = delete; - //! Explicitely deleted copy assignment, copying is not allowed! + //! Explicitely deleted copy assignment, copying is not allowed. PoolEntry& operator=(const PoolEntry&) = delete; /**