https://git.reactos.org/?p=reactos.git;a=commitdiff;h=90fb8391fc0dad974fa18…
commit 90fb8391fc0dad974fa18622c33590418f7a918c
Author: Timo Kreuzer <timo.kreuzer(a)reactos.org>
AuthorDate: Sun Oct 13 21:23:16 2024 +0200
Commit: Timo Kreuzer <timo.kreuzer(a)reactos.org>
CommitDate: Thu Jan 16 14:18:53 2025 +0200
[UCRT] Fix shadowing template parameters
---
sdk/lib/ucrt/inc/corecrt_internal_stdio_output.h | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/sdk/lib/ucrt/inc/corecrt_internal_stdio_output.h
b/sdk/lib/ucrt/inc/corecrt_internal_stdio_output.h
index 3cb318e2b91..e3ebfe4fd6f 100644
--- a/sdk/lib/ucrt/inc/corecrt_internal_stdio_output.h
+++ b/sdk/lib/ucrt/inc/corecrt_internal_stdio_output.h
@@ -1580,26 +1580,26 @@ private:
return true;
}
- template <typename Character>
- static bool __cdecl is_pointer_specifier(Character const specifier) throw()
+ template <typename Character2>
+ static bool __cdecl is_pointer_specifier(Character2 const specifier) throw()
{
return specifier == 'p';
}
- template <typename Character>
- static bool __cdecl is_string_specifier(Character const specifier) throw()
+ template <typename Character2>
+ static bool __cdecl is_string_specifier(Character2 const specifier) throw()
{
return specifier == 's' || specifier == 'S';
}
- template <typename Character>
- static bool __cdecl is_character_specifier(Character const specifier) throw()
+ template <typename Character2>
+ static bool __cdecl is_character_specifier(Character2 const specifier) throw()
{
return specifier == 'c' || specifier == 'C';
}
- template <typename Character>
- static bool __cdecl is_integral_specifier(Character const specifier) throw()
+ template <typename Character2>
+ static bool __cdecl is_integral_specifier(Character2 const specifier) throw()
{
return specifier == 'd' || specifier == 'i' || specifier ==
'o'
|| specifier == 'u' || specifier == 'x' || specifier ==
'X'