Skip to content

Commit 8ff7771

Browse files
committed
C++11-ify NonCopyable
Define copy operators public and deleted rather declaring them private and undefined. Will give immediate compilation errors rather than delayed linking errors.
1 parent aa6fd58 commit 8ff7771

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

platform/NonCopyable.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -211,18 +211,17 @@ class NonCopyable {
211211
}
212212

213213
#else
214-
private:
215214
/**
216215
* Declare copy constructor as private. Any attempt to copy construct
217216
* a NonCopyable will fail at compile time.
218217
*/
219-
NonCopyable(const NonCopyable &);
218+
NonCopyable(const NonCopyable &) = delete;
220219

221220
/**
222221
* Declare copy assignment operator as private. Any attempt to copy assign
223222
* a NonCopyable will fail at compile time.
224223
*/
225-
NonCopyable &operator=(const NonCopyable &);
224+
NonCopyable &operator=(const NonCopyable &) = delete;
226225
#endif
227226
#endif
228227
};

0 commit comments

Comments
 (0)