mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-25 15:21:54 +00:00
Fix a warning
This commit is contained in:
parent
673a4525f6
commit
4888000f32
4
posix.cc
4
posix.cc
@ -151,8 +151,8 @@ fmt::LongLong fmt::File::size() const {
|
||||
if (error != NO_ERROR)
|
||||
throw WindowsError(GetLastError(), "cannot get file size");
|
||||
}
|
||||
fmt::ULongLong size = size_upper;
|
||||
return (size << sizeof(DWORD) * CHAR_BIT) | size_lower;
|
||||
fmt::ULongLong long_size = size_upper;
|
||||
return (long_size << sizeof(DWORD) * CHAR_BIT) | size_lower;
|
||||
#else
|
||||
typedef struct stat Stat;
|
||||
Stat file_stat = Stat();
|
||||
|
Loading…
Reference in New Issue
Block a user