1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-30 19:00:12 +02:00

Remove comment about implementing a test for wchar_t suport in ofstream

This commit is contained in:
Patrick von Reth
2015-09-04 15:32:28 +02:00
parent d54fc628f7
commit dab59cb205

View File

@@ -191,7 +191,6 @@ setupLogfile( QFile& f )
#ifdef OFSTREAM_CAN_OPEN_WCHAR_FILE_NAMES
// this is not supported in upstream libstdc++ as shipped with GCC
// GCC needs the patch from https://gcc.gnu.org/ml/libstdc++/2011-06/msg00066.html applied
// we could create a CMake check like the one for taglib, but I don't care right now :P
logStream.open( f.fileName().toStdWString().c_str() );
#else
logStream.open( f.fileName().toStdString().c_str() );