In-place factories moved from /detail to /utility

New value_initalized tests added


[SVN r25436]
This commit is contained in:
Fernando Cacciola
2004-09-27 12:28:21 +00:00
parent 07a80c1b9b
commit 24c5f92413
2 changed files with 6 additions and 2 deletions

View File

@ -17,8 +17,8 @@
void optional_reference__test_no_converting_assignment()
{
boost::optional<int&> opt ;
short v = 1 ;
short& r = v ;
double v = 1 ;
double& r = v ;
opt = r ;
}