summaryrefslogtreecommitdiff
blob: 296a5d61db861bb6403b76f11fd5e0449cced500 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
https://github.com/badaix/snapcast/commit/f6ce4f3fbb3c797f5d92578d7bc8df547ad4cd64

From f6ce4f3fbb3c797f5d92578d7bc8df547ad4cd64 Mon Sep 17 00:00:00 2001
From: Johannes Pohl <johannes.pohl@badaix.de>
Date: Wed, 11 Dec 2024 15:50:11 +0100
Subject: [PATCH] Add missing include in resampler.cpp

This fixes issue #1295
---
 common/resampler.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/common/resampler.cpp b/common/resampler.cpp
index 1d5d698a..9548c957 100644
--- a/common/resampler.cpp
+++ b/common/resampler.cpp
@@ -21,6 +21,7 @@
 
 // local headers
 #include "common/aixlog.hpp"
+#include "common/snap_exception.hpp"
 
 // standard headers
 #include <cmath>