[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: octave 1.1.1 compile error in Linux
From: |
John Eaton |
Subject: |
Re: octave 1.1.1 compile error in Linux |
Date: |
Sun, 23 Apr 95 21:22:40 EDT |
"Zhuo E. Lin( L ) 204-783-2884" <address@hidden> wrote:
: tree-expr.cc:2109:
:
: tree_index_expression *lhs_expr = (*lhs) (p);
: ^^^^^^^^^^^^^^^
: Is this really an error? Or just caused by gcc 2.6.4?
It is a problem with versions of gcc newer than 2.6.3. Try changing
that line to
tree_index_expression *lhs_expr = lhs->operator () (p);
and it should work.
jwe