diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2018-01-13 02:47:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-13 02:47:26 (GMT) |
commit | 63ded6c27ac2efdedd1ad9ab5e71681ce66e82ca (patch) | |
tree | 4f8bcd7726254b71d5339ea1db70ae09b25c54f8 | |
parent | ed8d02cfc689f26b65e6deb585561c59615b05de (diff) | |
parent | 93b77987f59955e3a927c957a99cb8290b9f4990 (diff) | |
download | googletest-63ded6c27ac2efdedd1ad9ab5e71681ce66e82ca.zip googletest-63ded6c27ac2efdedd1ad9ab5e71681ce66e82ca.tar.gz googletest-63ded6c27ac2efdedd1ad9ab5e71681ce66e82ca.tar.bz2 |
Merge pull request #1400 from gennadiycivil/master
Upstream/merge
-rw-r--r-- | googletest/include/gtest/internal/gtest-internal.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/googletest/include/gtest/internal/gtest-internal.h b/googletest/include/gtest/internal/gtest-internal.h index 454fffb..88f94c4 100644 --- a/googletest/include/gtest/internal/gtest-internal.h +++ b/googletest/include/gtest/internal/gtest-internal.h @@ -197,7 +197,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( @@ -650,7 +650,7 @@ class TypeParameterizedTest { // Types). Valid values for 'index' are [0, N - 1] where N is the // length of Types. static bool Register(const char* prefix, - CodeLocation code_location, + const CodeLocation& code_location, const char* case_name, const char* test_names, int index) { typedef typename Types::Head Type; @@ -681,7 +681,7 @@ class TypeParameterizedTest { template <GTEST_TEMPLATE_ Fixture, class TestSel> class TypeParameterizedTest<Fixture, TestSel, Types0> { public: - static bool Register(const char* /*prefix*/, CodeLocation, + static bool Register(const char* /*prefix*/, const CodeLocation&, const char* /*case_name*/, const char* /*test_names*/, int /*index*/) { return true; @@ -727,7 +727,7 @@ class TypeParameterizedTestCase { template <GTEST_TEMPLATE_ Fixture, typename Types> class TypeParameterizedTestCase<Fixture, Templates0, Types> { public: - static bool Register(const char* /*prefix*/, CodeLocation, + static bool Register(const char* /*prefix*/, const CodeLocation&, const TypedTestCasePState* /*state*/, const char* /*case_name*/, const char* /*test_names*/) { return true; |