Fixing clang-tidy error (related to PR #3049). (#3050)

Example:
```
test_class_sh_unique_ptr_member.cpp:17:5: error: deleted member function should be public [modernize-use-equals-delete,-warnings-as-errors]
    pointee(const pointee &) = delete;
    ^
```
This commit is contained in:
Ralf W. Grosse-Kunstleve 2021-06-19 16:51:09 -07:00 committed by GitHub
parent 7f41bea169
commit 29fafcc1b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,6 @@ public:
int get_int() const { return 213; } int get_int() const { return 213; }
private:
pointee(const pointee &) = delete; pointee(const pointee &) = delete;
pointee(pointee &&) = delete; pointee(pointee &&) = delete;
pointee &operator=(const pointee &) = delete; pointee &operator=(const pointee &) = delete;