Merge pull request #229 from TsudaKageyu/gcc42-2

Fixed compilation error with GCC4.2
This commit is contained in:
Tsuda Kageyu 2013-06-01 10:11:52 -07:00
commit 3ae452ee2a

View File

@ -69,9 +69,9 @@ using namespace TagLib;
namespace
{
#ifdef _WIN32
const uint BufferSize = 8192;
const TagLib::uint BufferSize = 8192;
#else
const uint BufferSize = 1024;
const TagLib::uint BufferSize = 1024;
#endif
}