From 98deaf1d46e82be18e9e063fb056b88d32572c73 Mon Sep 17 00:00:00 2001 From: Jeffrey Espiritu Date: Sun, 8 Apr 2018 16:21:19 -0400 Subject: [PATCH] replaygain_synthesis.c: Fix compile issue in MSVS The `inline` keyword is only available in C++ so include `share/compat.h`. Signed-off-by: Erik de Castro Lopo --- src/share/replaygain_synthesis/replaygain_synthesis.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/share/replaygain_synthesis/replaygain_synthesis.c b/src/share/replaygain_synthesis/replaygain_synthesis.c index 5069d26c..9881794a 100644 --- a/src/share/replaygain_synthesis/replaygain_synthesis.c +++ b/src/share/replaygain_synthesis/replaygain_synthesis.c @@ -41,6 +41,7 @@ #include /* for memset() */ #include +#include "share/compat.h" #include "share/replaygain_synthesis.h" #include "FLAC/assert.h"