diff options
| author | monsta <[email protected]> | 2015-12-01 16:50:20 +0300 | 
|---|---|---|
| committer | monsta <[email protected]> | 2015-12-01 17:04:40 +0300 | 
| commit | 8ebbe78fe9e499b6c74abddb855cdac3b89cb94b (patch) | |
| tree | cbf4ea821111109d78f9f2f6655e0c778b6ad493 | |
| parent | ae45abab34821e38e1135f3875a5f0f201cda3da (diff) | |
| download | mate-system-monitor-8ebbe78fe9e499b6c74abddb855cdac3b89cb94b.tar.bz2 mate-system-monitor-8ebbe78fe9e499b6c74abddb855cdac3b89cb94b.tar.xz  | |
memmaps: remove dead code
| -rw-r--r-- | src/memmaps.cpp | 34 | 
1 files changed, 0 insertions, 34 deletions
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<guint16, string> Map;  | 
