mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-30 03:17:15 +02:00
Try to avoid an odd warning from Visual C++
[SVN r57919]
This commit is contained in:
@ -32,8 +32,9 @@ int main() {
|
|||||||
test::set s1;
|
test::set s1;
|
||||||
test::multiset s2;
|
test::multiset s2;
|
||||||
|
|
||||||
m1[test::value()] = test::value();
|
test::value x;
|
||||||
m2.insert(std::make_pair(test::value(), test::value()));
|
m1[x] = x;
|
||||||
s1.insert(test::value());
|
m2.insert(std::make_pair(x, x));
|
||||||
s2.insert(test::value());
|
s1.insert(x);
|
||||||
|
s2.insert(x);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user