From 33ff92d27ece2122a5522b372f4f695d4ab0f682 Mon Sep 17 00:00:00 2001 From: Daniel Patterson Date: Thu, 10 Nov 2016 16:02:27 -0800 Subject: [PATCH] Remove debugging code. --- include/storage/shared_datatype.hpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/include/storage/shared_datatype.hpp b/include/storage/shared_datatype.hpp index 49a70e07a..263e0e309 100644 --- a/include/storage/shared_datatype.hpp +++ b/include/storage/shared_datatype.hpp @@ -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