Mercurial > hg > octave-lyh
changeset 3526:cc21933776a1
[project @ 2000-02-02 10:53:27 by jwe]
author | jwe |
---|---|
date | Wed, 02 Feb 2000 10:53:28 +0000 |
parents | 6cfa474c5b99 |
children | c7084a0fbddd |
files | src/ChangeLog src/Map.cc src/data.cc |
diffstat | 3 files changed, 7 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,9 @@ 2000-02-02 John W. Eaton <jwe@bevo.che.wisc.edu> + * data.cc (Fis_list): Fix continuation char. + + * Map.cc (CHptr_to_index, goodCHptr): Delete static decl. + * ov.h (unary_op, binary_op, assign_op): Prepend `op_' to elts. Change all usses
--- a/src/Map.cc +++ b/src/Map.cc @@ -113,7 +113,7 @@ // table entry. Not terrible, but not wonderful either. template <class C> -static int +int goodCHptr (CHNode<C> *t) { return (((X_CAST (unsigned, t)) & 1) == 0); @@ -126,7 +126,7 @@ } template <class C> -static unsigned int +unsigned int CHptr_to_index (CHNode<C> *t) { return (X_CAST (unsigned, t)) >> 1;