Skip to content

Commit baf6939

Browse files
committed
Marking copy constructor as deleted in test
Previously test declared the copy constructor as private without implementation. Marking it as =delete.
1 parent 89c38e1 commit baf6939

File tree

1 file changed

+1
-1
lines changed
  • testing-resources/include/aws/external

1 file changed

+1
-1
lines changed

testing-resources/include/aws/external/gtest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11883,7 +11883,7 @@ class ValueArray2 {
1188311883

1188411884
private:
1188511885
// No implementation - assignment is unsupported.
11886-
void operator=(const ValueArray2& other);
11886+
void operator=(const ValueArray2&)=delete;
1188711887

1188811888
const T1 v1_;
1188911889
const T2 v2_;

0 commit comments

Comments
 (0)