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

This commit is contained in:
Edouard DUPIN 2016-02-02 21:18:54 +01:00
parent 4b7259ccf6
commit 61d1afff4c
4 changed files with 4 additions and 17 deletions

View File

@ -3,10 +3,7 @@
* @copyright 2011, Edouard DUPIN, all right reserved
* @license APACHE v2.0 (see license file)
*/
#ifndef __AUDIO_ALGO_DRAIN_ALGO_BIQUAD_H__
#define __AUDIO_ALGO_DRAIN_ALGO_BIQUAD_H__
#pragma once
#include <memory>
#include <etk/types.h>
@ -288,4 +285,3 @@ namespace audio {
}
}
#endif

View File

@ -3,9 +3,7 @@
* @copyright 2011, Edouard DUPIN, all right reserved
* @license APACHE v2.0 (see license file)
*/
#ifndef __AUDIO_ALGO_DRAIN_ALGO_BIQUAD_TYPE_H__
#define __AUDIO_ALGO_DRAIN_ALGO_BIQUAD_TYPE_H__
#pragma once
#include <memory>
@ -26,4 +24,3 @@ namespace audio {
}
}
#endif

View File

@ -3,9 +3,7 @@
* @copyright 2011, Edouard DUPIN, all right reserved
* @license APACHE v2.0 (see license file)
*/
#ifndef __AUDIO_ALGO_DRAIN_ALGO_EQUALIZER_H__
#define __AUDIO_ALGO_DRAIN_ALGO_EQUALIZER_H__
#pragma once
#include <etk/types.h>
#include <memory>
@ -82,4 +80,3 @@ namespace audio {
}
}
#endif

View File

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