diff options
author | duxiuxing <duxiuxing@foxmail.com> | 2018-07-17 15:46:47 +0800 |
---|---|---|
committer | duxiuxing <duxiuxing@foxmail.com> | 2018-07-17 15:46:47 +0800 |
commit | 65a49a73f0e7c059ad67d768c860bb296383fd56 (patch) | |
tree | 5d62a4aa3128e6f75685fb71eb18f9cbbd8ba40b /googlemock/include/gmock/internal/gmock-internal-utils.h | |
parent | 077ee54cefd247656ac9a995e150e0d1ab9d0bf7 (diff) | |
download | googletest-65a49a73f0e7c059ad67d768c860bb296383fd56.tar.gz googletest-65a49a73f0e7c059ad67d768c860bb296383fd56.tar.bz2 googletest-65a49a73f0e7c059ad67d768c860bb296383fd56.zip |
Fix warning C4819: The file contains a character that cannot be represented in the current code page (936). Save the file in Unicode format to prevent data loss
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: |