From 16906cdcbe0db931c525561a8f86daf9fda60e20 Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@musicpd.org>
Date: Tue, 12 Mar 2019 11:54:31 +0100
Subject: [PATCH] fs/FileInfo: remove redundant `inline` keywords from
 `constexpr` functions

---
 src/fs/FileInfo.hxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/fs/FileInfo.hxx b/src/fs/FileInfo.hxx
index 26d9c0009..acd915248 100644
--- a/src/fs/FileInfo.hxx
+++ b/src/fs/FileInfo.hxx
@@ -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);