$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Ovanes Markarian (om_boost_at_[hidden])
Date: 2007-04-19 13:41:12
Hello!
Thanks for the great lib again. I was using a fusion::map container and discovered the following
error at:
The exsample states:
typedef map<
pair<int, char>
, pair<double, std::string> >
map_type;
map_type m(
make_pair<int>('X')
, make_pair<double>("Men"));
std::cout << at<int>(m) << std::endl;
std::cout << at<double>(m) << std::endl;
^^-- error
Where it should be not at<TYPE>(...) but at_key<TYPE>(...).
With Kind Regards,
Ovanes