summaryrefslogtreecommitdiffstats
path: root/src/selection-chemistry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/selection-chemistry.cpp')
-rw-r--r--src/selection-chemistry.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/selection-chemistry.cpp b/src/selection-chemistry.cpp
index 8c47d1934..3e1bb56aa 100644
--- a/src/selection-chemistry.cpp
+++ b/src/selection-chemistry.cpp
@@ -2334,7 +2334,7 @@ void ObjectSet::moveScreen(double dx, double dy)
-typedef struct Forward {
+struct Forward {
typedef SPObject *Iterator;
static Iterator children(SPObject *o) { return o->firstChild(); }
@@ -2344,9 +2344,9 @@ typedef struct Forward {
static SPObject *object(Iterator i) { return i; }
static Iterator next(Iterator i) { return i->getNext(); }
static bool isNull(Iterator i) {return (!i);}
-} Forward;
+};
-typedef struct ListReverse {
+struct ListReverse {
typedef std::list<SPObject *> *Iterator;
static Iterator children(SPObject *o) {
@@ -2377,7 +2377,7 @@ private:
}
return list;
}
-} ListReverse;
+};