aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-04-04 14:28:11 -0400
committerGitHub <noreply@github.com>2018-04-04 14:28:11 -0400
commit891e436c6cb8817615c92494b8832ea51650c5a8 (patch)
tree90cdd71a732965df226ac732139f6f561854ae69
parent43776990663c08c4d207658bc5756058da1040bf (diff)
parentfbe3c9453332c9d9aae95b09f788aa9305258653 (diff)
downloadgoogletest-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.h2
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(