Mercurial > hg > octave-nkf
comparison liboctave/oct-mutex.h @ 11501:331fcc41ca23
data member initialization fixes
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 13 Jan 2011 03:04:51 -0500 |
parents | cbc402e64d83 |
children | fd0a3ac60b0e |
comparison
equal
deleted
inserted
replaced
11500:7aeb4eb7403f | 11501:331fcc41ca23 |
---|---|
49 { | 49 { |
50 public: | 50 public: |
51 octave_mutex (void); | 51 octave_mutex (void); |
52 | 52 |
53 octave_mutex (const octave_mutex& m) | 53 octave_mutex (const octave_mutex& m) |
54 : rep (m.rep) | |
54 { | 55 { |
55 rep = m.rep; | |
56 rep->count++; | 56 rep->count++; |
57 } | 57 } |
58 | 58 |
59 ~octave_mutex (void) | 59 ~octave_mutex (void) |
60 { | 60 { |