porting 1.4.4 rev. 1989 (except for File_WIN32(U)/FileImpl::isDeviceImpl() where GENERIC_ACCESS was left due to breaking testFileAtributes3() test case)

This commit is contained in:
Aleksandar Fabijanic
2012-08-26 03:40:12 +00:00
parent eb20f339e1
commit d384a499d5
34 changed files with 1368 additions and 41 deletions

View File

@@ -1406,7 +1406,11 @@ void VarTest::testConversionOperator()
assert (any == i);
any = 123;
#if defined(_MSC_VER) // gcc bombs on s(any)
std::string s(any);
#else
std::string s = any;
#endif
assert (s == "123");
assert (s == any);
assert (any == s);