From 40ec819330ba1d2649df54d6f8a853448c4ca01c Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@musicpd.org>
Date: Sat, 21 Jul 2018 07:15:09 +0200
Subject: [PATCH] SongFilter: make a few methods private

---
 src/SongFilter.hxx | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/SongFilter.hxx b/src/SongFilter.hxx
index 310beefdf..596de07f5 100644
--- a/src/SongFilter.hxx
+++ b/src/SongFilter.hxx
@@ -81,6 +81,7 @@ public:
 			return value.c_str();
 		}
 
+	private:
 		gcc_pure gcc_nonnull(2)
 		bool StringMatch(const char *s) const noexcept;
 
@@ -90,6 +91,7 @@ public:
 		gcc_pure
 		bool Match(const Tag &tag) const noexcept;
 
+	public:
 		gcc_pure
 		bool Match(const DetachedSong &song) const noexcept;