summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormonsta <[email protected]>2015-12-01 16:50:20 +0300
committermonsta <[email protected]>2015-12-01 17:04:40 +0300
commit8ebbe78fe9e499b6c74abddb855cdac3b89cb94b (patch)
treecbf4ea821111109d78f9f2f6655e0c778b6ad493 /src
parentae45abab34821e38e1135f3875a5f0f201cda3da (diff)
downloadmate-system-monitor-8ebbe78fe9e499b6c74abddb855cdac3b89cb94b.tar.bz2
mate-system-monitor-8ebbe78fe9e499b6c74abddb855cdac3b89cb94b.tar.xz
memmaps: remove dead code
Diffstat (limited to 'src')
-rw-r--r--src/memmaps.cpp34
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;