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

This commit is contained in:
Rachel 2024-04-18 09:36:58 -07:00
parent 3fa908846d
commit 0f8ea60ace

View File

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