Code

Merge and cleanup of GSoC C++-ification project.
[inkscape.git] / src / xml / node-iterators.h
index 3d09dfd1baa52715ee1842602493c71eaae25d80..389d70be0eb1191885c8b5592266cb789e5a63ef 100644 (file)
@@ -23,6 +23,7 @@ struct NodeSiblingIteratorStrategy {
         return ( node ? node->next() : NULL );
     }
 };
+
 struct NodeParentIteratorStrategy {
     static Node const *next(Node const *node) {
         return ( node ? node->parent() : NULL );