SongFilter: make internal Parse() overload private

This commit is contained in:
Max Kellermann 2018-07-21 07:21:27 +02:00
parent 88c19c21ee
commit bd8cf7c53d

View File

@ -110,9 +110,11 @@ public:
~SongFilter();
private:
gcc_nonnull(2,3)
bool Parse(const char *tag, const char *value, bool fold_case=false);
public:
bool Parse(ConstBuffer<const char *> args, bool fold_case=false);
gcc_pure