fix disabling copy constructor
Stefan Schuermans

Stefan Schuermans commited on 2011-12-11 19:57:25
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -29,7 +29,7 @@ public:
29 29
 
30 30
 private:
31 31
   /// copy constructor disabled
32
-  Udp4Sock(const Io &that);
32
+  Udp4Sock(const Udp4Sock &that);
33 33
 
34 34
   /// assignment operator disabled
35 35
   const Udp4Sock & operator=(const Udp4Sock &that);
36 36