mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-14 21:06:40 +02:00
@ -72,14 +72,14 @@ main()
|
||||
{
|
||||
// conversion from ns::point to vector
|
||||
ns::point p(5, 3);
|
||||
vector<int, short> v(p);
|
||||
vector<int, long> v(p);
|
||||
v = p;
|
||||
}
|
||||
|
||||
{
|
||||
// conversion from ns::point to list
|
||||
ns::point p(5, 3);
|
||||
list<int, short> l(p);
|
||||
list<int, long> l(p);
|
||||
l = p;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user