Reactos

[UCRT] Use a C cast instead of const_cast for GCC

This is because GCC will generate errors for both const_cast and static_cast depending on the template parameter:
- With const_cast: error: invalid 'const_cast' from type 'std::nullptr_t' to type 'const wchar_t**'
- With static_cast: error: invalid 'static_cast' from type 'wchar_t** const' to type 'const wchar_t**'

+1 -1
+1 -1
sdk/lib/ucrt/inc/corecrt_internal_strtox.h
··· 1870 1870 EndPointer const end 1871 1871 ) throw() 1872 1872 { 1873 - return c_string_character_source<Character>(string, const_cast<Character const**>(end)); 1873 + return c_string_character_source<Character>(string, (Character const**)(end)); 1874 1874 } 1875 1875 1876 1876 template <typename Integer, typename Character, typename EndPointer>