Skip to content

Commit

Permalink
G2P.cpp: fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
lumpidu committed Mar 27, 2024
1 parent f4f47b6 commit 20f54a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/cpp/g2p/G2P.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void G2P::Initialize()
try
{
std::set_new_handler(FailedNewHandler);
char* argv0 = "G2P";
char* argv0 = (char*) "G2P";
char** argv = &argv0;
int argc = 1;
SET_FLAGS(argv[0], &argc, &argv, true);
Expand Down

0 comments on commit 20f54a3

Please sign in to comment.