From 8ebbe78fe9e499b6c74abddb855cdac3b89cb94b Mon Sep 17 00:00:00 2001 From: monsta Date: Tue, 1 Dec 2015 16:50:20 +0300 Subject: memmaps: remove dead code --- src/memmaps.cpp | 34 ---------------------------------- 1 file changed, 34 deletions(-) (limited to 'src') diff --git a/src/memmaps.cpp b/src/memmaps.cpp index a9939f3..06d9aa5 100644 --- a/src/memmaps.cpp +++ b/src/memmaps.cpp @@ -61,40 +61,6 @@ namespace }; - - -#if 0 - - struct ColumnState - { - unsigned visible; - unsigned id; - unsigned width; - - int pack() const - { - unsigned p = 0; - p |= (this->visible & 0x0001) << 24; - p |= (this->id & 0x00ff) << 16; - p |= (this->width & 0xffff); - return p; - } - - void unpack(int i) - { - this->visible = 0x0001 & (i >> 24); - this->id = 0x00ff & (i >> 16); - this->width = 0xffff & i; - } - }; - - - - -#endif - - - class InodeDevices { typedef std::map Map; -- cgit v1.2.1