diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2018-07-20 10:30:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-20 10:30:23 -0400 |
commit | c62c79432bd23762a99a6658380fd202f858d7a9 (patch) | |
tree | 75f6ec1727b40e525fef203cb7999cdf240a3760 /googlemock/include/gmock/internal/gmock-internal-utils.h | |
parent | 6ce9b98f541b8bcd84c5c5b3483f29a933c4aefb (diff) | |
parent | d8db0ca9cf226f37e909982af83845a4cd40800f (diff) | |
download | googletest-c62c79432bd23762a99a6658380fd202f858d7a9.tar.gz googletest-c62c79432bd23762a99a6658380fd202f858d7a9.tar.bz2 googletest-c62c79432bd23762a99a6658380fd202f858d7a9.zip |
Merge pull request #1668 from duxiuxing/googletest_for_asam
Fix warning C4819 in Visual Studio
Diffstat (limited to 'googlemock/include/gmock/internal/gmock-internal-utils.h')
-rw-r--r-- | googlemock/include/gmock/internal/gmock-internal-utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/include/gmock/internal/gmock-internal-utils.h b/googlemock/include/gmock/internal/gmock-internal-utils.h index 4751788a..c5841aba 100644 --- a/googlemock/include/gmock/internal/gmock-internal-utils.h +++ b/googlemock/include/gmock/internal/gmock-internal-utils.h @@ -348,7 +348,7 @@ GTEST_API_ void Log(LogSeverity severity, const std::string& message, // correct overload. This must not be instantiable, to prevent client code from // accidentally resolving to the overload; for example: // -// ON_CALL(mock, Method({}, nullptr))… +// ON_CALL(mock, Method({}, nullptr))... // class WithoutMatchers { private: |