*** empty log message ***

This commit is contained in:
Arvid Norberg 2004-04-14 03:01:06 +00:00
parent f997f4c226
commit 21e3c387ca
2 changed files with 2 additions and 1 deletions

View File

@ -172,7 +172,7 @@ namespace libtorrent
data_type m_type;
#if defined(_MSC_VER) && _MSC_VER < 1300
#if defined(_MSC_VER) && _MSC_VER < 1310
// workaround for msvc-bug.
// assumes sizeof(map<string, char>) == sizeof(map<string, entry>)
// and sizeof(list<char>) == sizeof(list<entry>)

View File

@ -73,6 +73,7 @@ namespace
if (m == mode_out) return O_WRONLY | O_CREAT | O_BINARY | O_RANDOM;
if (m == mode_in) return O_RDONLY | O_BINARY | O_RANDOM;
assert(false);
return 0;
}
}