summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfo40225 <fo40225@hotmail.com>2018-04-04 23:16:16 +0800
committerfo40225 <fo40225@hotmail.com>2018-04-04 23:16:16 +0800
commita0c27bd8a5357f2c5f1438b551816a1f9e5668c6 (patch)
tree256a591b4bdfbc83c48a6e0c3f1c44771546999b
parent07af8af37321892b022da63c3cd97688accd7483 (diff)
downloadgoogletest-a0c27bd8a5357f2c5f1438b551816a1f9e5668c6.tar.gz
googletest-a0c27bd8a5357f2c5f1438b551816a1f9e5668c6.zip
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(
OpenPOWER on IntegriCloud