$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Terje Slettebø (tslettebo_at_[hidden])
Date: 2002-10-12 15:37:37
>From: "Terje Slettebø" <tslettebo_at_[hidden]>
> Test operator+(const Test &t1,const Test &t2)
> {
> return Test(t1)+=t2;
> }
Sorry, this should be:
inline Test operator+(const Test &t1,const Test &t2)
{
return Test(t1)+=t2;
}
The result is the same, though, as it inlines it, anyway.
Regards,
Terje