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

This commit is contained in:
Edouard DUPIN 2016-02-02 21:18:54 +01:00
parent 4fb062e2d1
commit e08a41fa07
2 changed files with 2 additions and 9 deletions

View File

@ -3,10 +3,7 @@
* @copyright 2011, Edouard DUPIN, all right reserved
* @license APACHE v2.0 (see license file)
*/
#ifndef __AUDIO_ALGO_SPEEX_RESAMPLER_H__
#define __AUDIO_ALGO_SPEEX_RESAMPLER_H__
#pragma once
#include <etk/types.h>
#include <audio/format.h>
@ -58,4 +55,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_SPEEX_DEBUG_H__
#define __AUDIO_ALGO_SPEEX_DEBUG_H__
#pragma once
#include <etk/log.h>
@ -43,4 +41,3 @@ namespace audio {
} \
} while (0)
#endif