summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2018-04-19 22:25:16 -0400
committerGravatar Lioncash2018-04-19 22:25:19 -0400
commite8e5041955554a0bc6dc12fe160468f10275c2c1 (patch)
tree3d95c803da63a808956287381c29d27d6fd2a6ac /src
parentMerge pull request #356 from lioncash/shader (diff)
downloadyuzu-e8e5041955554a0bc6dc12fe160468f10275c2c1.tar.gz
yuzu-e8e5041955554a0bc6dc12fe160468f10275c2c1.tar.xz
yuzu-e8e5041955554a0bc6dc12fe160468f10275c2c1.zip
common_types: Remove unnecessary check for whether or not__func__ is defined
VS has supported this for quite a while.
Diffstat (limited to 'src')
-rw-r--r--src/common/common_types.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/common/common_types.h b/src/common/common_types.h
index 844d34965..56b2677c8 100644
--- a/src/common/common_types.h
+++ b/src/common/common_types.h
@@ -27,12 +27,6 @@
27#include <array> 27#include <array>
28#include <cstdint> 28#include <cstdint>
29 29
30#ifdef _MSC_VER
31#ifndef __func__
32#define __func__ __FUNCTION__
33#endif
34#endif
35
36typedef std::uint8_t u8; ///< 8-bit unsigned byte 30typedef std::uint8_t u8; ///< 8-bit unsigned byte
37typedef std::uint16_t u16; ///< 16-bit unsigned short 31typedef std::uint16_t u16; ///< 16-bit unsigned short
38typedef std::uint32_t u32; ///< 32-bit unsigned word 32typedef std::uint32_t u32; ///< 32-bit unsigned word