fs/FileInfo: remove redundant inline keywords from constexpr functions

This commit is contained in:
Max Kellermann 2019-03-12 11:54:31 +01:00
parent 96e70659f0
commit 16906cdcbe

View File

@ -35,7 +35,7 @@
#ifdef _WIN32
static inline constexpr uint64_t
static constexpr uint64_t
ConstructUint64(DWORD lo, DWORD hi)
{
return uint64_t(lo) | (uint64_t(hi) << 32);