mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 23:42:57 +00:00
[UCRT] Fix non-standard literal suffixes
This commit is contained in:
parent
ffd69754f9
commit
4de4349109
7 changed files with 18 additions and 18 deletions
|
@ -66,7 +66,7 @@ static Integer convert_file_size_to_integer(DWORD const high, DWORD const low) t
|
|||
template <>
|
||||
static __int64 convert_file_size_to_integer(DWORD const high, DWORD const low) throw()
|
||||
{
|
||||
return static_cast<__int64>(high) * 0x100000000i64 + static_cast<__int64>(low);
|
||||
return static_cast<__int64>(high) * 0x100000000ll + static_cast<__int64>(low);
|
||||
}
|
||||
|
||||
template <>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue