$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Matthias Troyer (troyer_at_[hidden])
Date: 2008-08-29 16:25:35
On 28 Aug 2008, at 20:47, Diane wrote:
> tracked_char *tcp = it.chstar; //****error on this line****//
> ar & *tcp;
> }
>
> I get this compile error: cannot convert `char*' to `tracked_char*' in
> initialization
Can you try
tracked_char* tcp(it.chstar)
That sometimes works for me if I have such problems
Matthias