mirror of
https://github.com/boostorg/container.git
synced 2026-02-26 16:42:19 +00:00
[inspection report] remove tabs and fix copyright notice format
This commit is contained in:
@@ -391,10 +391,10 @@ int main ()
|
||||
//Test std::pair value type as tree has workarounds to make old std::pair
|
||||
//implementations movable that can break things
|
||||
{
|
||||
boost::container::map<pair_t, pair_t> s;
|
||||
std::pair<const pair_t,pair_t> p;
|
||||
s.insert(p);
|
||||
s.emplace(p);
|
||||
boost::container::map<pair_t, pair_t> s;
|
||||
std::pair<const pair_t,pair_t> p;
|
||||
s.insert(p);
|
||||
s.emplace(p);
|
||||
}
|
||||
|
||||
////////////////////////////////////
|
||||
|
||||
@@ -379,10 +379,10 @@ int main ()
|
||||
//Test std::pair value type as tree has workarounds to make old std::pair
|
||||
//implementations movable that can break things
|
||||
{
|
||||
boost::container::set<std::pair<int,int> > s;
|
||||
std::pair<int,int> p(0, 0);
|
||||
s.insert(p);
|
||||
s.emplace(p);
|
||||
boost::container::set<std::pair<int,int> > s;
|
||||
std::pair<int,int> p(0, 0);
|
||||
s.insert(p);
|
||||
s.emplace(p);
|
||||
}
|
||||
|
||||
test_merge_from_different_comparison();
|
||||
|
||||
Reference in New Issue
Block a user