mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 09:58:18 -05:00
Common: Move header guards over to pragma once
Also replaced C headers with the C++ equivalent ones
This commit is contained in:
@ -22,8 +22,7 @@
|
||||
* http://code.google.com/p/gekko-gc-emu/
|
||||
*/
|
||||
|
||||
#ifndef COMMON_PLATFORM_H_
|
||||
#define COMMON_PLATFORM_H_
|
||||
#pragma once
|
||||
|
||||
#include "common/common_types.h"
|
||||
|
||||
@ -110,5 +109,3 @@ typedef void EXCEPTION_POINTERS;
|
||||
|
||||
#define GCC_VERSION_AVAILABLE(major, minor) (defined(__GNUC__) && (__GNUC__ > (major) || \
|
||||
(__GNUC__ == (major) && __GNUC_MINOR__ >= (minor))))
|
||||
|
||||
#endif // COMMON_PLATFORM_H_
|
||||
|
Reference in New Issue
Block a user