diff options
author | Lioncash <mathew1800@gmail.com> | 2018-04-19 22:25:16 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-04-19 22:25:19 -0400 |
commit | e8e5041955554a0bc6dc12fe160468f10275c2c1 (patch) | |
tree | 3d95c803da63a808956287381c29d27d6fd2a6ac | |
parent | 17ad56c1dce85e71d5ab8a87efd7d43d87cacd92 (diff) |
common_types: Remove unnecessary check for whether or not__func__ is defined
VS has supported this for quite a while.
-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 @@ #include <array> #include <cstdint> -#ifdef _MSC_VER -#ifndef __func__ -#define __func__ __FUNCTION__ -#endif -#endif - typedef std::uint8_t u8; ///< 8-bit unsigned byte typedef std::uint16_t u16; ///< 16-bit unsigned short typedef std::uint32_t u32; ///< 32-bit unsigned word |