mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-29 19:07: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::multiset s2;
|
||||
|
||||
m1[test::value()] = test::value();
|
||||
m2.insert(std::make_pair(test::value(), test::value()));
|
||||
s1.insert(test::value());
|
||||
s2.insert(test::value());
|
||||
test::value x;
|
||||
m1[x] = x;
|
||||
m2.insert(std::make_pair(x, x));
|
||||
s1.insert(x);
|
||||
s2.insert(x);
|
||||
}
|
||||
|
Reference in New Issue
Block a user