octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

small question about octave_value::magic_colon


From: John W. Eaton
Subject: small question about octave_value::magic_colon
Date: Wed, 4 Feb 2009 17:27:01 -0500

On  4-Feb-2009, Jaroslav Hajek wrote:

| hi,
| 
| while creating a patch today, I noticed that octave_value::magic_colon
| is an enum containing the magic_colon_t member, which makes it
| possible to create magic colons by octave_value idx =
| octave_value::magic_colon_t.
| 
| Now, I suppose it was meant the other way around? magic_colon_t being
| the enum type, magic_colon the member? OK if I change this?

Yes, but magic_colon_t is not a good name, so we should use something
else for the enum name and magic_colon for the enum value.  Maybe

  enum ov_magic_colon { magic_colon };

?

Thanks,

jwe


reply via email to

[Prev in Thread] Current Thread [Next in Thread]