Fixed compilation error with GCC4.2

This commit is contained in:
Tsuda Kageyu 2013-06-02 02:05:11 +09:00
parent 9ccc4878d0
commit bc2d3ea72e

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
}