Skip to content

Commit

Permalink
Merge pull request danmar#558 from Dmitry-Me/mismatchingTcharNames2
Browse files Browse the repository at this point in the history
Unicode names set for ANSI
  • Loading branch information
amai2012 committed Mar 19, 2015
2 parents 302d4d4 + 9703e6b commit 7f7bec5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tokenize.cpp
Expand Up @@ -9754,10 +9754,10 @@ void Tokenizer::simplifyMicrosoftStringFunctions()
tok->str("fopen_s");
tok->originalName("_tfopen_s");
} else if (Token::simpleMatch(tok, "_tfreopen (")) {
tok->str("_wfreopen");
tok->str("freopen");
tok->originalName("_tfreopen");
} else if (Token::simpleMatch(tok, "_tfreopen_s (")) {
tok->str("_wfreopen_s");
tok->str("freopen_s");
tok->originalName("_tfreopen_s");
} else if (Token::simpleMatch(tok, "_tcscat (")) {
tok->str("strcat");
Expand Down

0 comments on commit 7f7bec5

Please sign in to comment.