Hello
I'm trying to use taglib in my Qt-program but it won't work. With this code, it doesn't compile although it should because I just changed the parameter a from the example included with the source.
void Test(){
const char* a = std::string("song.mp3").c_str();
TagLib::FileRef f(a);
}
When I drop the parameter in the creation of f. it does compile.
What's wrong?
Thanks,
Jasper