From fc9b66d4b3fec383f40bdad3c142b5c75777a6f6 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Tue, 2 Feb 2016 21:18:54 +0100 Subject: [PATCH] [DEV] replace 'include guard' with 'pragma once' --- date/date.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/date/date.h b/date/date.h index bd512d8..20b4b99 100644 --- a/date/date.h +++ b/date/date.h @@ -5,9 +5,7 @@ * * @license BSD v3 (see license file) */ - -#ifndef __DATE_H__ -#define __DATE_H__ +#pragma once #include @@ -20,5 +18,3 @@ namespace date { int32_t getSecond(); }; - -#endif