From 847eec23cf60fb32df8193b2c2678de98433376c Mon Sep 17 00:00:00 2001 From: Tsuda Kageyu Date: Fri, 4 Dec 2015 14:28:56 +0900 Subject: [PATCH] Fix careless copy-and-paste code. --- taglib/riff/riffutils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taglib/riff/riffutils.h b/taglib/riff/riffutils.h index 42977efe..14b8508e 100644 --- a/taglib/riff/riffutils.h +++ b/taglib/riff/riffutils.h @@ -34,7 +34,7 @@ namespace TagLib { namespace RIFF { - static bool isValidChunkName(const ByteVector &name) + inline bool isValidChunkName(const ByteVector &name) { if(name.size() != 4) return false;