Convert hyphens to underscores in generated GMM header's include-guard

This commit is contained in:
Rachel 2024-04-18 09:30:15 -07:00
parent 0c63d5b5a5
commit b0f81a7057

View File

@ -41,6 +41,7 @@ void GMM::WriteGmmHeader(const string &_filename) {
switch (c) {
case '/':
case '.':
case '-':
c = '_';
break;
default: