1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-12 09:04:33 +02:00

ofstream is in std::

This commit is contained in:
Patrick von Reth
2015-09-04 13:46:52 +02:00
parent 74b4e2ec16
commit 7caee33dcc

View File

@@ -27,7 +27,7 @@ include(CheckCXXSourceCompiles)
check_cxx_source_compiles( "#include <fstream>
int main(){
ofstream stream(L\"Test\");
std::ofstream stream(L\"Test\");
return 0;
}"
OFSTREAM_CAN_OPEN_WCHAR_FILE_NAMES)