Simplify test case; type does not need to be noncopyable

This commit is contained in:
Glen Fernandes 2018-07-12 21:48:05 -04:00
parent 19ec659a91
commit cc119253b4

View File

@ -44,8 +44,6 @@ public:
return i_;
}
private:
C2(const C2&);
C2& operator=(const C2&);
int i_;
};