comparison src/ov-struct.h @ 11071:629f6fc20dc5

ov-struct.h (octave_struct (const Octave_map&)): delete constructor
author John W. Eaton <jwe@octave.org>
date Fri, 01 Oct 2010 04:37:53 -0400
parents 76079e505f9d
children fd0a3ac60b0e
comparison
equal deleted inserted replaced
11070:686d5bd22132 11071:629f6fc20dc5
51 51
52 octave_struct (void) 52 octave_struct (void)
53 : octave_base_value () { } 53 : octave_base_value () { }
54 54
55 octave_struct (const octave_map& m) 55 octave_struct (const octave_map& m)
56 : octave_base_value (), map (m) { }
57
58 octave_struct (const Octave_map& m)
59 : octave_base_value (), map (m) { } 56 : octave_base_value (), map (m) { }
60 57
61 octave_struct (const octave_struct& s) 58 octave_struct (const octave_struct& s)
62 : octave_base_value (), map (s.map) { } 59 : octave_base_value (), map (s.map) { }
63 60