mirror of
https://github.com/boostorg/container.git
synced 2026-01-19 04:02:17 +00:00
Remove unneeded typename
This commit is contained in:
@@ -22,7 +22,7 @@ int main()
|
||||
BOOST_CONTAINER_STATIC_ASSERT(( is_same<intcontainer_t, pmr::deque<int> >::value ));
|
||||
#endif
|
||||
intcontainer_t cont(pmr::get_default_resource());
|
||||
typedef typename intcontainer_t::value_type value_type;
|
||||
typedef intcontainer_t::value_type value_type;
|
||||
cont.push_back(value_type());
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ int main()
|
||||
#endif
|
||||
|
||||
intcontainer_t cont(pmr::get_default_resource());
|
||||
typedef typename intcontainer_t::value_type value_type;
|
||||
typedef intcontainer_t::value_type value_type;
|
||||
cont.push_back(value_type());
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ int main()
|
||||
BOOST_CONTAINER_STATIC_ASSERT(( is_same<intcontainer_t, pmr::flat_map<int, float> >::value ));
|
||||
#endif
|
||||
intcontainer_t cont(pmr::get_default_resource());
|
||||
typedef typename intcontainer_t::value_type value_type;
|
||||
typedef intcontainer_t::value_type value_type;
|
||||
cont.insert(value_type());
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ int main()
|
||||
BOOST_CONTAINER_STATIC_ASSERT(( is_same<intcontainer_t, pmr::flat_set<int> >::value ));
|
||||
#endif
|
||||
intcontainer_t cont(pmr::get_default_resource());
|
||||
typedef typename intcontainer_t::value_type value_type;
|
||||
typedef intcontainer_t::value_type value_type;
|
||||
cont.insert(value_type());
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ int main()
|
||||
BOOST_CONTAINER_STATIC_ASSERT(( is_same<intcontainer_t, pmr::list<int> >::value ));
|
||||
#endif
|
||||
intcontainer_t cont(pmr::get_default_resource());
|
||||
typedef typename intcontainer_t::value_type value_type;
|
||||
typedef intcontainer_t::value_type value_type;
|
||||
cont.push_back(value_type());
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ int main()
|
||||
BOOST_CONTAINER_STATIC_ASSERT(( is_same<intcontainer_t, pmr::map<int, float> >::value ));
|
||||
#endif
|
||||
intcontainer_t cont(pmr::get_default_resource());
|
||||
typedef typename intcontainer_t::value_type value_type;
|
||||
typedef intcontainer_t::value_type value_type;
|
||||
cont.insert(value_type());
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ int main()
|
||||
#endif
|
||||
|
||||
intcontainer_t cont(pmr::get_default_resource());
|
||||
typedef typename intcontainer_t::value_type value_type;
|
||||
typedef intcontainer_t::value_type value_type;
|
||||
cont.insert(value_type());
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ int main()
|
||||
#endif
|
||||
|
||||
intcontainer_t cont(pmr::get_default_resource());
|
||||
typedef typename intcontainer_t::value_type value_type;
|
||||
typedef intcontainer_t::value_type value_type;
|
||||
cont.push_back(value_type());
|
||||
|
||||
return 0;
|
||||
|
||||
@@ -22,7 +22,7 @@ int main()
|
||||
BOOST_CONTAINER_STATIC_ASSERT(( is_same<intcontainer_t, pmr::stable_vector<int> >::value ));
|
||||
#endif
|
||||
intcontainer_t cont(pmr::get_default_resource());
|
||||
typedef typename intcontainer_t::value_type value_type;
|
||||
typedef intcontainer_t::value_type value_type;
|
||||
cont.push_back(value_type());
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user