$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Terje Slettebø (tslettebo_at_[hidden])
Date: 2002-12-10 19:03:46
>From: "Terje Slettebø" <tslettebo_at_[hidden]>
> Fails:
>
> struct X { ~X() {} int n; };
> struct Y : X {};
>
> Succeeds:
>
> struct X { ~X() {} };
> struct Y : X { int n; };
Sorry, the destructors should of course be virtual in the above.
Terje