summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Espiritu <jespiritu@myseneca.ca>2018-04-08 16:21:19 -0400
committerErik de Castro Lopo <erikd@mega-nerd.com>2018-04-09 07:42:12 +1000
commit98deaf1d46e82be18e9e063fb056b88d32572c73 (patch)
tree62f43395010c6bf0c8ea0468f872a54a1c1f0316
parent45f7d41a8a87a743e79ee26143e8231e0edb5be5 (diff)
downloadflac-98deaf1d46e82be18e9e063fb056b88d32572c73.tar.gz
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 <erikd@mega-nerd.com>
-rw-r--r--src/share/replaygain_synthesis/replaygain_synthesis.c1
1 files changed, 1 insertions, 0 deletions
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 <string.h> /* for memset() */
#include <math.h>
+#include "share/compat.h"
#include "share/replaygain_synthesis.h"
#include "FLAC/assert.h"