Skip to content

Commit

Permalink
Windowsの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed Sep 3, 2023
1 parent c54fc40 commit b16e513
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion example/cpp/windows/simple_tts/simple_tts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ int main() {
}
voicevox_open_jtalk_rc_delete(open_jtalk);

for (auto const& entry : std::filesystem::directory_iterator{GetModelDir()}) {
for (const auto& entry : std::filesystem::directory_iterator{GetModelDir()}) {
const auto path = entry.path();
if (path.extension() != ".vvm") {
continue;
Expand Down
1 change: 1 addition & 0 deletions example/cpp/windows/simple_tts/simple_tts.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include "voicevox_core.h"

std::string GetOpenJTalkDict();
std::string GetModelDir();
std::wstring GetWaveFileName();
std::wstring GetExePath();
std::wstring GetExeDirectory();
Expand Down

0 comments on commit b16e513

Please sign in to comment.