*** empty log message ***

This commit is contained in:
Magnus Jonsson 2004-01-21 03:46:14 +00:00
parent 9c14019f34
commit 8b286d84a6
1 changed files with 6 additions and 6 deletions

View File

@ -1098,7 +1098,7 @@ namespace libtorrent
{
assert(m_slot_to_piece[i]<m_piece_to_slot.size());
assert(m_piece_to_slot[m_slot_to_piece[i]]==i);
assert(
/* assert(
std::find(
m_unallocated_slots.begin()
, m_unallocated_slots.end()
@ -1110,25 +1110,25 @@ namespace libtorrent
, m_free_slots.end()
, i) == m_free_slots.end()
);
}
*/ }
else if (m_slot_to_piece[i] == unallocated)
{
assert(
/* assert(
std::find(
m_unallocated_slots.begin()
, m_unallocated_slots.end()
, i) != m_unallocated_slots.end()
);
}
*/ }
else if (m_slot_to_piece[i] == unassigned)
{
assert(
/* assert(
std::find(
m_free_slots.begin()
, m_free_slots.end()
, i) != m_free_slots.end()
);
}
*/ }
else
{
assert(false && "m_slot_to_piece[i] is invalid");