diff options
author | llucax <llucax> | 2008-01-18 18:12:42 +0000 |
---|---|---|
committer | llucax <llucax> | 2008-01-18 18:12:42 +0000 |
commit | f279f2b7372a6523b4055dea41bc75e0a3d7b253 (patch) | |
tree | 6cddb00783c3c72ef90ef97aa30dabee9adc050d /ev++.h | |
parent | 36200726929763bf7a74c6212f37920582298e2c (diff) |
Remove private implementation of watcher's copy ctor and operator=.
Diffstat (limited to 'ev++.h')
-rw-r--r-- | ev++.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -208,10 +208,9 @@ namespace ev { \ private: \ \ - cppstem (const cppstem &o) \ - { /* disabled */ } \ + cppstem (const cppstem &o); \ \ - void operator =(const cppstem &o) { /* disabled */ } \ + cppstem & operator =(const cppstem &o); \ \ public: |