From 387bc5f1107fb27684c0ed96f558a8c65c470cfe Mon Sep 17 00:00:00 2001 From: BlackMark Date: Sun, 28 Jul 2019 14:00:12 +0200 Subject: [PATCH] Removed unnecessary const qualifiers in template --- io.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io.hpp b/io.hpp index 10a0b99..7b91716 100644 --- a/io.hpp +++ b/io.hpp @@ -209,7 +209,7 @@ static constexpr auto getPIN(const Bus bus) ////////////////////////////////////////////////////////////////////////// // Zero overhead Pin object for pretty code without losing performance -template +template

class Pin { public: // Pin objects cannot be moved or copied @@ -301,7 +301,7 @@ class Pin { ////////////////////////////////////////////////////////////////////////// // Zero overhead Port object for pretty code without losing performance -template +template class Port { public: // Port objects cannot be moved or copied