diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-03-03 18:29:27 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-03-03 18:29:27 +0000 |
commit | 5c519485dc18aa9dab7ba1b5bfab32f741392f3c (patch) | |
tree | 408148cf8199d2d8d0ced8fe4c8b7786e224eb72 | |
parent | d36b63077fc8664577296dfdf8c35e8af9d4bda6 (diff) | |
download | bcm5719-llvm-5c519485dc18aa9dab7ba1b5bfab32f741392f3c.tar.gz bcm5719-llvm-5c519485dc18aa9dab7ba1b5bfab32f741392f3c.zip |
Avoid explicitly declaring the copy assignment operator, as this unnecessarily makes the copy ctor deprecated in C++11
llvm-svn: 231095
-rw-r--r-- | llvm/utils/unittest/googletest/include/gtest/internal/gtest-param-util-generated.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/utils/unittest/googletest/include/gtest/internal/gtest-param-util-generated.h b/llvm/utils/unittest/googletest/include/gtest/internal/gtest-param-util-generated.h index 258267500ec..e32c762f75a 100644 --- a/llvm/utils/unittest/googletest/include/gtest/internal/gtest-param-util-generated.h +++ b/llvm/utils/unittest/googletest/include/gtest/internal/gtest-param-util-generated.h @@ -100,9 +100,6 @@ class ValueArray2 { } private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray2& other); - const T1 v1_; const T2 v2_; }; |