diff options
author | Jonny007-MKD <me@jonny007-mkd.de> | 2018-09-13 14:13:23 +0200 |
---|---|---|
committer | Jonny007-MKD <me@jonny007-mkd.de> | 2018-09-13 14:13:23 +0200 |
commit | e86d1df3e177bb5782a97fd52a513b7b6983cea6 (patch) | |
tree | 20441a22c3177a8a17a16ba7439142d616579231 | |
parent | 8c849c584c65a187ae472af466cb7cdaa98685d6 (diff) | |
download | googletest-e86d1df3e177bb5782a97fd52a513b7b6983cea6.tar.gz googletest-e86d1df3e177bb5782a97fd52a513b7b6983cea6.tar.bz2 googletest-e86d1df3e177bb5782a97fd52a513b7b6983cea6.zip |
Avoid implicit move operator
-rw-r--r-- | googletest/include/gtest/internal/gtest-internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/googletest/include/gtest/internal/gtest-internal.h b/googletest/include/gtest/internal/gtest-internal.h index da3ebd2b..7901cd3b 100644 --- a/googletest/include/gtest/internal/gtest-internal.h +++ b/googletest/include/gtest/internal/gtest-internal.h @@ -1199,6 +1199,7 @@ public: const std::string& get() const { return value; } private: + AdditionalMessage& operator=(AdditionalMessage&&); std::string value; }; |