ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtutil.h
(Generate patch)

Comparing rxvt-unicode/src/rxvtutil.h (file contents):
Revision 1.55 by root, Fri May 25 07:48:03 2012 UTC vs.
Revision 1.56 by root, Fri May 25 07:49:20 2012 UTC

108 auto_ptr () : p (0) { } 108 auto_ptr () : p (0) { }
109 109
110 explicit 110 explicit
111 auto_ptr (T *a) : p (a) { } 111 auto_ptr (T *a) : p (a) { }
112 112
113 auto_ptr (auto_ptr<T> &a) 113 auto_ptr (auto_ptr &a)
114 { 114 {
115 p = a.p; 115 p = a.p;
116 a.p = 0; 116 a.p = 0;
117 } 117 }
118 118

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines