テキストファイルを文字列変数に読み取りたいのですが、以下の手順を実行した後、文字列は空です:
fstream shaderFile(fileName.c_str(),ios::in);
string shaderSrc = string(istreambuf_iterator<char>(shaderFile),istreambuf_iterator<char>());
このスニペットの何が問題なのか誰か教えてもらえますか?
テキストファイルを文字列変数に読み取りたいのですが、以下の手順を実行した後、文字列は空です:
fstream shaderFile(fileName.c_str(),ios::in);
string shaderSrc = string(istreambuf_iterator<char>(shaderFile),istreambuf_iterator<char>());
このスニペットの何が問題なのか誰か教えてもらえますか?