$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Peter Dimov (pdimov_at_[hidden])
Date: 2005-01-23 06:16:36
heroboy wrote:
> hello everyone,
> what's the difference between "tuple<int>
> t;" and " tuple<int> t();" why
> tuple<int> t;
> cout<<t;
> is ok.
> But
> tuple<int> t();
> cout<<t;
> make a link error.
Because tuple<int> t(); is a function returning a tuple<int>.