[DEV] replace 'include guard' with 'pragma once'

This commit is contained in:
Edouard DUPIN 2016-02-02 21:18:54 +01:00
parent a678f05638
commit fc9b66d4b3

View File

@ -5,9 +5,7 @@
* *
* @license BSD v3 (see license file) * @license BSD v3 (see license file)
*/ */
#pragma once
#ifndef __DATE_H__
#define __DATE_H__
#include <stdint.h> #include <stdint.h>
@ -20,5 +18,3 @@ namespace date {
int32_t getSecond(); int32_t getSecond();
}; };
#endif