[DEV] replace 'include guard' with 'pragma once'
This commit is contained in:
parent
39c244ff1a
commit
4c14b4afc1
@ -3,9 +3,7 @@
|
||||
* @copyright 2015, Edouard DUPIN, all right reserved
|
||||
* @license APACHE v2.0 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __JVM_BASICS_DEBUG_H__
|
||||
#define __JVM_BASICS_DEBUG_H__
|
||||
#pragma once
|
||||
|
||||
#include <etk/log.h>
|
||||
|
||||
@ -38,5 +36,3 @@ namespace jvm_basics {
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -3,9 +3,7 @@
|
||||
* @copyright 2015, Edouard DUPIN, all right reserved
|
||||
* @license APACHE v2.0 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __JVM_BASICS_H__
|
||||
#define __JVM_BASICS_H__
|
||||
#pragma once
|
||||
|
||||
namespace jvm_basics {
|
||||
JavaVM*& getJavaVM();
|
||||
@ -13,4 +11,3 @@ namespace jvm_basics {
|
||||
void checkExceptionJavaVM(JNIEnv* _env);
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user