Remove debugging code.

This commit is contained in:
Daniel Patterson 2016-11-10 16:02:27 -08:00
parent de4fd76d57
commit 33ff92d27e

View File

@ -172,20 +172,6 @@ struct DataLayout
return ptr;
}
friend std::ostream &operator<<(std::ostream &os, const DataLayout &layout)
{
os << "Memory layout: " << std::endl;
os << " Total size: " << layout.GetSizeOfLayout() << std::endl;
for (unsigned bid = 0; bid < BlockID::NUM_BLOCKS; bid++)
{
os << " " << block_id_to_name[bid]
<< " offset: " << layout.GetBlockOffset(BlockID(bid))
<< " size: " << layout.GetBlockSize(BlockID(bid)) << std::endl;
}
return os;
}
};
enum SharedDataType