$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2003-11-18 10:26:22
Vladimir Prus wrote:
> IOW, you mean situation like
>
> D* d = new D;
> B* b = new B;
> oa << b;
Should have been:
D* d = new D;
B* b = d;
oa << b;
Sorry,
Volodya