diff options
| author | 2018-04-19 22:25:16 -0400 | |
|---|---|---|
| committer | 2018-04-19 22:25:19 -0400 | |
| commit | e8e5041955554a0bc6dc12fe160468f10275c2c1 (patch) | |
| tree | 3d95c803da63a808956287381c29d27d6fd2a6ac /src | |
| parent | Merge pull request #356 from lioncash/shader (diff) | |
| download | yuzu-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.h | 6 |
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 | |||
| 36 | typedef std::uint8_t u8; ///< 8-bit unsigned byte | 30 | typedef std::uint8_t u8; ///< 8-bit unsigned byte |
| 37 | typedef std::uint16_t u16; ///< 16-bit unsigned short | 31 | typedef std::uint16_t u16; ///< 16-bit unsigned short |
| 38 | typedef std::uint32_t u32; ///< 32-bit unsigned word | 32 | typedef std::uint32_t u32; ///< 32-bit unsigned word |