fox@allegra.att.com (12/02/89)
I compiled the following program, with g++-1.36.1 and ran gdb-3.4
on it (the machine was a sun-4.) When I tried to set a breakpoint
on the printf statement, I get the message
(gdb) Reading in symbols for test.cc...Invalid symbol data:
unrecognized type-code `.' at symtab pos 21.
Here is the program:
#include <stdio.h>
class Object {
public:
Object& operator?:(Object& a, Object& b);
};
main()
{
printf("Hello, world.\n");
}
Thanks,
David Fox
fox@allegra.att.com
fox@cs.columbia.edu