Changes in src/InitTweak/FixGlobalInit.cc [a16764a6:e89f4b1]
- File:
-
- 1 edited
-
src/InitTweak/FixGlobalInit.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/FixGlobalInit.cc
ra16764a6 re89f4b1 74 74 std::string ret = name.substr( 0, name.find( '.' ) ); 75 75 // replace invalid characters with _ 76 static std::string invalid = "/- ";76 static std::string invalid = "/-@"; 77 77 replace_if( ret.begin(), ret.end(), []( char c ) { return invalid.find(c) != std::string::npos; }, '_' ); 78 78 return ret;
Note:
See TracChangeset
for help on using the changeset viewer.