Mercurial > hg > octave-nkf
comparison src/ov.h @ 4455:abbf63293766
[project @ 2003-07-11 01:01:16 by jwe]
author | jwe |
---|---|
date | Fri, 11 Jul 2003 01:01:17 +0000 |
parents | f3c21a1d1c62 |
children | d7d9ca19960a |
comparison
equal
deleted
inserted
replaced
4454:c474333062d9 | 4455:abbf63293766 |
---|---|
716 | 716 |
717 #define DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA(t, n) \ | 717 #define DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA(t, n) \ |
718 int t::t_id (-1); \ | 718 int t::t_id (-1); \ |
719 const std::string t::t_name (n) | 719 const std::string t::t_name (n) |
720 | 720 |
721 // If TRUE, allow assignments like | 721 // If TRUE, print a warning for assignments like |
722 // | 722 // |
723 // octave> A(1) = 3; A(2) = 5 | 723 // octave> A(1) = 3; A(2) = 5 |
724 // | 724 // |
725 // for A already defined and a matrix type. | 725 // for A already defined and a matrix type. |
726 extern bool Vdo_fortran_indexing; | 726 extern bool Vwarn_fortran_indexing; |
727 | 727 |
728 // Should we print a warning when converting `[97, 98, 99, "123"]' | 728 // Should we print a warning when converting `[97, 98, 99, "123"]' |
729 // to a character string? | 729 // to a character string? |
730 extern bool Vwarn_num_to_str; | 730 extern bool Vwarn_num_to_str; |
731 | 731 |