summaryrefslogtreecommitdiffstats
path: root/googletest
diff options
context:
space:
mode:
authorJonny007-MKD <me@jonny007-mkd.de>2018-09-13 12:13:23 (GMT)
committerJonny007-MKD <me@jonny007-mkd.de>2018-09-13 12:13:23 (GMT)
commite86d1df3e177bb5782a97fd52a513b7b6983cea6 (patch)
tree20441a22c3177a8a17a16ba7439142d616579231 /googletest
parent8c849c584c65a187ae472af466cb7cdaa98685d6 (diff)
downloadgoogletest-e86d1df3e177bb5782a97fd52a513b7b6983cea6.zip
googletest-e86d1df3e177bb5782a97fd52a513b7b6983cea6.tar.gz
googletest-e86d1df3e177bb5782a97fd52a513b7b6983cea6.tar.bz2
Avoid implicit move operator
Diffstat (limited to 'googletest')
-rw-r--r--googletest/include/gtest/internal/gtest-internal.h1
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 da3ebd2..7901cd3 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;
};