Skip to content

Commit

Permalink
Merge pull request #314 from lhearachel/msgenc-header-guard
Browse files Browse the repository at this point in the history
Convert hyphens to underscores in generated GMM header's include-guard
  • Loading branch information
red031000 committed Apr 22, 2024
2 parents a002857 + 8ae12bf commit 1ee046e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tools/msgenc/Gmm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ void GMM::WriteGmmHeader(const string &_filename) {
switch (c) {
case '/':
case '.':
case '-':
c = '_';
break;
default:
Expand Down

0 comments on commit 1ee046e

Please sign in to comment.