RE: [boost] Tuples in MS Visual C++
by Joe Mariadassou other posts by this author
Feb 9 2001 4:07AM messages near this date
Re: [boost] Re: Review: Boost Test Library
|
Re: [boost] Tuples in MS Visual C++
<snip>
// Tie variables into a tuple
template<typename T1, typename T2>
inline
tuple<detail::assign_to_pointee<T1> >
tie(T1& t1)
{
return make_tuple(detail::assign_to_pointee<T1> (&t1));
}
</snip>
Is T2 required here?
joe
-----Original Message-----
From: Doug Gregor [mailto: gregod@[...].. ]
Sent: Sunday, 4 February 2001 7:16 AM
To: boost@[...].com
Subject: [boost] Tuples in MS Visual C++
The code is available at:
http://groups.yahoo.com/group/boost/files/lambda/Win32%20Port/tuple.hpp
Doug Gregor
gregod@c...
Thread:
Joe Mariadassou
Doug Gregor
|