From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marco Morandini To: gcc@gcc.gnu.org Subject: Re: A user question (was: Re: Faster compilation speed) Date: Tue, 13 Aug 2002 10:47:00 -0000 Message-id: <3D594719.6040806@aero.polimi.it> References: <3D5943EB.5080208@aero.polimi.it> X-SW-Source: 2002-08/msg00762.html Marco Morandini wrote: > wrong code.... bleah! Here is the right code (pippo (dummy in italian) <-> dummy) Marco Version 1 ------------------- class A{ private: double c; public: virtual ~A(); }; void dummy(const A&a); int main(void) { A a; dummy(a); . . //repeat this line N times . . dummy(a); return 0; } ------------------- Version 2 ------------------- void dummy(const double&a); int main(void) { double a; dummy(a); . . //repeat this line N times . . dummy(a); return 0; } -------------------