mirror of
https://github.com/boostorg/unordered.git
synced 2025-11-02 00:31:37 +01:00
Improved support for Visual C++.
[SVN r2985]
This commit is contained in:
@@ -19,4 +19,6 @@ int main()
|
||||
boost::unordered_multimap<int, int> x4;
|
||||
|
||||
foo(x1, x2, x3, x4);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -58,7 +58,7 @@ void simple_test(X const& a)
|
||||
|
||||
{
|
||||
X u;
|
||||
X& r(u);
|
||||
X& r = u;
|
||||
// TODO: I can't actually see a requirement for that assignment
|
||||
// returns a reference to itself (just that it returns a reference).
|
||||
BOOST_TEST(&(r = r) == &r);
|
||||
|
||||
Reference in New Issue
Block a user