mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-23 00:57:20 +02:00
Added workaround for gcc 4.6 with C array
This commit is contained in:
@ -81,6 +81,9 @@ int main()
|
||||
test_at<list<int[3]> >();
|
||||
test_at<tuple<int[3]> >();
|
||||
|
||||
#if !BOOST_WORKAROUND(BOOST_GCC, / 100 == 406) || defined(BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS)
|
||||
// FIXME: gcc 4.6 w/ c++0x doesn't like set with array...
|
||||
test_at_key<set<int[3]> >();
|
||||
#endif
|
||||
test_at_key<map<pair<int[3], int[3]> > >();
|
||||
}
|
||||
|
Reference in New Issue
Block a user