diff options
author | fo40225 <fo40225@hotmail.com> | 2018-04-04 15:16:16 (GMT) |
---|---|---|
committer | fo40225 <fo40225@hotmail.com> | 2018-04-04 15:16:16 (GMT) |
commit | a0c27bd8a5357f2c5f1438b551816a1f9e5668c6 (patch) | |
tree | 256a591b4bdfbc83c48a6e0c3f1c44771546999b /googletest | |
parent | 07af8af37321892b022da63c3cd97688accd7483 (diff) | |
download | googletest-a0c27bd8a5357f2c5f1438b551816a1f9e5668c6.zip googletest-a0c27bd8a5357f2c5f1438b551816a1f9e5668c6.tar.gz googletest-a0c27bd8a5357f2c5f1438b551816a1f9e5668c6.tar.bz2 |
fix build break on locale windows
Diffstat (limited to 'googletest')
-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 ffc22f9..c050da7 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( |