From: David Blaikie Date: Tue, 3 Mar 2015 18:29:27 +0000 (+0000) Subject: Avoid explicitly declaring the copy assignment operator, as this unnecessarily makes... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=24a7df36905e2bec604eec56e2426ff399a83093;p=oota-llvm.git Avoid explicitly declaring the copy assignment operator, as this unnecessarily makes the copy ctor deprecated in C++11 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231095 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/unittest/googletest/include/gtest/internal/gtest-param-util-generated.h b/utils/unittest/googletest/include/gtest/internal/gtest-param-util-generated.h index 258267500ec..e32c762f75a 100644 --- a/utils/unittest/googletest/include/gtest/internal/gtest-param-util-generated.h +++ b/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_; };