summaryrefslogtreecommitdiff
path: root/ev++.h
diff options
context:
space:
mode:
authorllucax <llucax>2008-01-18 18:12:42 +0000
committerllucax <llucax>2008-01-18 18:12:42 +0000
commitf279f2b7372a6523b4055dea41bc75e0a3d7b253 (patch)
tree6cddb00783c3c72ef90ef97aa30dabee9adc050d /ev++.h
parent36200726929763bf7a74c6212f37920582298e2c (diff)
Remove private implementation of watcher's copy ctor and operator=.
Diffstat (limited to 'ev++.h')
-rw-r--r--ev++.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/ev++.h b/ev++.h
index 53367c1..e921852 100644
--- a/ev++.h
+++ b/ev++.h
@@ -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: