mirror of
https://github.com/reactos/reactos.git
synced 2025-06-23 17:20:20 +00:00
[UCRT] Fix shadowing template parameters
This commit is contained in:
parent
482f318a23
commit
90fb8391fc
1 changed files with 8 additions and 8 deletions
|
@ -1580,26 +1580,26 @@ private:
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename Character>
|
template <typename Character2>
|
||||||
static bool __cdecl is_pointer_specifier(Character const specifier) throw()
|
static bool __cdecl is_pointer_specifier(Character2 const specifier) throw()
|
||||||
{
|
{
|
||||||
return specifier == 'p';
|
return specifier == 'p';
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename Character>
|
template <typename Character2>
|
||||||
static bool __cdecl is_string_specifier(Character const specifier) throw()
|
static bool __cdecl is_string_specifier(Character2 const specifier) throw()
|
||||||
{
|
{
|
||||||
return specifier == 's' || specifier == 'S';
|
return specifier == 's' || specifier == 'S';
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename Character>
|
template <typename Character2>
|
||||||
static bool __cdecl is_character_specifier(Character const specifier) throw()
|
static bool __cdecl is_character_specifier(Character2 const specifier) throw()
|
||||||
{
|
{
|
||||||
return specifier == 'c' || specifier == 'C';
|
return specifier == 'c' || specifier == 'C';
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename Character>
|
template <typename Character2>
|
||||||
static bool __cdecl is_integral_specifier(Character const specifier) throw()
|
static bool __cdecl is_integral_specifier(Character2 const specifier) throw()
|
||||||
{
|
{
|
||||||
return specifier == 'd' || specifier == 'i' || specifier == 'o'
|
return specifier == 'd' || specifier == 'i' || specifier == 'o'
|
||||||
|| specifier == 'u' || specifier == 'x' || specifier == 'X'
|
|| specifier == 'u' || specifier == 'x' || specifier == 'X'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue