[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)
*/
#ifndef __DATE_H__
#define __DATE_H__
#pragma once
#include <stdint.h>
@ -20,5 +18,3 @@ namespace date {
int32_t getSecond();
};
#endif