diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2018-04-04 14:28:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-04 14:28:11 -0400 |
commit | 891e436c6cb8817615c92494b8832ea51650c5a8 (patch) | |
tree | 90cdd71a732965df226ac732139f6f561854ae69 | |
parent | 43776990663c08c4d207658bc5756058da1040bf (diff) | |
parent | fbe3c9453332c9d9aae95b09f788aa9305258653 (diff) | |
download | googletest-891e436c6cb8817615c92494b8832ea51650c5a8.tar.gz googletest-891e436c6cb8817615c92494b8832ea51650c5a8.tar.bz2 googletest-891e436c6cb8817615c92494b8832ea51650c5a8.zip |
Merge pull request #1543 from fo40225/fix_locale_win
fix build break on locale windows
-rw-r--r-- | googletest/include/gtest/internal/gtest-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/include/gtest/internal/gtest-internal.h b/googletest/include/gtest/internal/gtest-internal.h index ffc22f92..c050da79 100644 --- a/googletest/include/gtest/internal/gtest-internal.h +++ b/googletest/include/gtest/internal/gtest-internal.h @@ -157,7 +157,7 @@ namespace edit_distance { // Returns the optimal edits to go from 'left' to 'right'. // All edits cost the same, with replace having lower priority than // add/remove. -// Simple implementation of the Wagner–Fischer algorithm. +// Simple implementation of the Wagner-Fischer algorithm. // See http://en.wikipedia.org/wiki/Wagner-Fischer_algorithm enum EditType { kMatch, kAdd, kRemove, kReplace }; GTEST_API_ std::vector<EditType> CalculateOptimalEdits( |