[Prev][Next][Index]
C++ unparser does not do XOR correctly
- To: sage-bugs@cica.cica.indiana.edu
- Subject: C++ unparser does not do XOR correctly
- Date: Fri, 02 Dec 1994 15:46:18 -0800
- From: Lars Thomas Hansen <lth@cs.uoregon.edu>
Given
main()
{
int a, b;
a^b;
}
the unparser says
main(){
int a, b;
a.xor.b;
}
which is not valid C++.
--lars