summaryrefslogtreecommitdiff
path: root/cpp/include/Freeze/Map.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/Freeze/Map.h')
-rw-r--r--cpp/include/Freeze/Map.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/include/Freeze/Map.h b/cpp/include/Freeze/Map.h
index 1b0eef3af9e..0da098edc77 100644
--- a/cpp/include/Freeze/Map.h
+++ b/cpp/include/Freeze/Map.h
@@ -11,8 +11,8 @@
#ifndef FREEZE_MAP_H
#define FREEZE_MAP_H
-#include <Freeze/DB.h>
#include <Ice/Ice.h>
+#include <Freeze/DB.h>
#include <iterator>
@@ -104,7 +104,7 @@ public:
}
}
- bool operator==(const DBIterator& rhs)
+ bool operator==(const DBIterator& rhs) const
{
if (!_db && !rhs._db)
{
@@ -113,7 +113,7 @@ public:
return false;
}
- bool operator!=(const DBIterator& rhs)
+ bool operator!=(const DBIterator& rhs) const
{
return !(*this == rhs);
}