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

This commit is contained in:
2016-02-02 21:18:54 +01:00
parent 569d59e05a
commit f1643a1231
26 changed files with 27 additions and 124 deletions

View File

@@ -5,9 +5,7 @@
*
* @license BSD 3 clauses (see license file)
*/
#ifndef __APPL_WINDOWS_H__
#define __APPL_WINDOWS_H__
#pragma once
#include <ewol/widget/Windows.h>
#include <ewol/widget/Composer.h>
@@ -25,7 +23,5 @@ namespace appl {
void onCallbackRecord();
void onCallbackGenerate();
};
};
}
#endif

View File

@@ -3,9 +3,7 @@
* @copyright 2011, Edouard DUPIN, all right reserved
* @license APACHE v2.0 (see license file)
*/
#ifndef __APPL_DEBUG_H__
#define __APPL_DEBUG_H__
#pragma once
#include <etk/log.h>
@@ -39,5 +37,3 @@ namespace appl {
} \
} while (0)
#endif