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

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

View File

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

View File

@ -3,9 +3,7 @@
* @copyright 2015, Edouard DUPIN, all right reserved * @copyright 2015, Edouard DUPIN, all right reserved
* @license APACHE v2.0 (see license file) * @license APACHE v2.0 (see license file)
*/ */
#pragma once
#ifndef __JVM_BASICS_H__
#define __JVM_BASICS_H__
namespace jvm_basics { namespace jvm_basics {
JavaVM*& getJavaVM(); JavaVM*& getJavaVM();
@ -13,4 +11,3 @@ namespace jvm_basics {
void checkExceptionJavaVM(JNIEnv* _env); void checkExceptionJavaVM(JNIEnv* _env);
} }
#endif