$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] boost::variant and "Current Approach: TemporaryHeapBackup" vs "An Initial Solution: Double Storage"
From: Peter Foelsche (peter_foelsche_at_[hidden])
Date: 2009-09-30 17:47:39
also it would be nice if one could somehow deduce the integer value returned
from which():
typedef boost::variant<std::string, int, double> CVariant;
CVariant("test").which() == CVariant::ID<std::string>::value
CVariant(1.0).which() == CVariant::ID<double>::value