For the following code:
class Integer
{
public :
Integer ( int i ) : i_ ( i ) {}
private :
int i_ ;
} ;
int main ( void )
{
Integer a ( 1 ) ;
Integer c ( a ) ;
}
I do: g++ -c and then run nm -C on the object file. I get only:
00000000 W Integer::Integer(int)
U __gxx_personality_v0
00000000 T main
Why do I not see the signature of the copy constructor
Integer::Integer(const Integer&) in the symbols list even though it is
automatically created?
Also, why do I not see i_, a and c and the name of the class Integer
itself? Are they not also symbols?
Shriramana Sharma.
-
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html