From 9735d4e86ae8aff498364e1cc129c00d2431449c Mon Sep 17 00:00:00 2001 From: BlackMark Date: Fri, 21 Feb 2020 16:48:31 +0100 Subject: [PATCH] Changed include guard to pragma once --- spi.hpp | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/spi.hpp b/spi.hpp index a75d752..e8f7723 100644 --- a/spi.hpp +++ b/spi.hpp @@ -1,11 +1,4 @@ -/* - * Copyright (c) by BlackMark 2016-2017 - * Date 17/09/2017 - * Version 1.4 - */ - -#ifndef SPI_H -#define SPI_H +#pragma once #include "../inout/inout.h" #include @@ -54,8 +47,6 @@ class SPI { static void select(bool bSelect); }; -#endif - ////////////////////////////////////////////////////////////////////////// InOutPin SPI::sm_cSCK; InOutPin SPI::sm_cMISO;