mirror of
https://github.com/boostorg/tuple.git
synced 2025-07-30 04:37:15 +02:00
Now works on non-MSVC compilers
[SVN r11057]
This commit is contained in:
@ -115,6 +115,12 @@ namespace tuples {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
template<typename T>
|
||||||
|
explicit cons(const head_type& h, const T& t) :
|
||||||
|
head(h), tail(t.head, t.tail)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
explicit cons(const head_type& h = head_type(),
|
explicit cons(const head_type& h = head_type(),
|
||||||
const tail_type& t = tail_type()) :
|
const tail_type& t = tail_type()) :
|
||||||
head(h), tail(t)
|
head(h), tail(t)
|
||||||
|
Reference in New Issue
Block a user