diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-03 09:53:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-03 09:53:49 +0200 |
commit | 29c702379864938f79ab36f448199007e48dbf38 (patch) | |
tree | 1cb4653c18638195bed2b9d32edfc87407ef068f /modules | |
parent | a928a10e835190539c3f704bb18ac56a75efddea (diff) | |
parent | 596d42615155c945234e27b65a91c7654891453b (diff) |
Merge pull request #38421 from Calinou/remove-cpp11-polyfills
Remove some C++11 polyfill defines that are no longer needed
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mono/utils/string_utils.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/modules/mono/utils/string_utils.cpp b/modules/mono/utils/string_utils.cpp index 907811355f..67b264d803 100644 --- a/modules/mono/utils/string_utils.cpp +++ b/modules/mono/utils/string_utils.cpp @@ -196,16 +196,6 @@ String str_format(const char *p_format, ...) { return res; } -// va_copy was defined in the C99, but not in C++ standards before C++11. -// When you compile C++ without --std=c++<XX> option, compilers still define -// va_copy, otherwise you have to use the internal version (__va_copy). -#if !defined(va_copy) -#if defined(__GNUC__) -#define va_copy(d, s) __va_copy((d), (s)) -#else -#define va_copy(d, s) ((d) = (s)) -#endif -#endif #if defined(MINGW_ENABLED) || defined(_MSC_VER) && _MSC_VER < 1900 #define gd_vsnprintf(m_buffer, m_count, m_format, m_args_copy) vsnprintf_s(m_buffer, m_count, _TRUNCATE, m_format, m_args_copy) |