Csaba Halász wrote:
> Hi!
>
> The copy constructor in question:
>
> 145 FGEnvironment::FGEnvironment (const FGEnvironment &env)
> 146 {
> 147 FGEnvironment();
> 148 copy(env);
> 149 }
>
> I guess that wants to call the default constructor first. However,
> that doesn'
Tim Moore wrote:
> Csaba Halász wrote:
>> Hi!
>>
>> The copy constructor in question:
>>
>> 145 FGEnvironment::FGEnvironment (const FGEnvironment &env)
>> 146 {
>> 147 FGEnvironment();
>> 148 copy(env);
>> 149 }
>>
>> I guess that wants to call the default constructor fi
Csaba Halász wrote:
> Hi!
>
> The copy constructor in question:
>
> 145 FGEnvironment::FGEnvironment (const FGEnvironment &env)
> 146 {
> 147 FGEnvironment();
> 148 copy(env);
> 149 }
>
> I guess that wants to call the default constructor first. However,
> that doesn'
Hi!
The copy constructor in question:
145 FGEnvironment::FGEnvironment (const FGEnvironment &env)
146 {
147 FGEnvironment();
148 copy(env);
149 }
I guess that wants to call the default constructor first. However,
that doesn't work. See
http://www.parashift.com/c++-faq
4 matches
Mail list logo