# HG changeset patch # User hegyi # Date 1094645536 0 # Node ID afba7fbbb23985b89265ba0c300ab30d9a465771 # Parent 88226d9fe821ddc6c64ce893f37dbacb39581058 There was a little troublie with the true return statement diff -r 88226d9fe821 -r afba7fbbb239 src/hugo/skeletons/path.h --- a/src/hugo/skeletons/path.h Wed Sep 08 12:06:45 2004 +0000 +++ b/src/hugo/skeletons/path.h Wed Sep 08 12:12:16 2004 +0000 @@ -106,9 +106,9 @@ EdgeIt& operator++() {} /// Comparison operator - bool operator==(const EdgeIt& e) const {} + bool operator==(const EdgeIt& e) const {return true;} /// Comparison operator - bool operator!=(const EdgeIt& e) const {} + bool operator!=(const EdgeIt& e) const {return true;} // /// Comparison operator // /// \todo It is not clear what is the "natural" ordering. // bool operator<(const EdgeIt& e) const {} diff -r 88226d9fe821 -r afba7fbbb239 src/test/path_test.cc --- a/src/test/path_test.cc Wed Sep 08 12:06:45 2004 +0000 +++ b/src/test/path_test.cc Wed Sep 08 12:12:16 2004 +0000 @@ -142,6 +142,7 @@ check(P.to() == v3); #endif +#ifndef SKELETON cout << "Vegigiteralunk az eleken." << endl; typedef DPath::NodeIt NodeIt; typedef DPath::EdgeIt EdgeIt; @@ -150,7 +151,7 @@ for(P.first(e); e!=INVALID; ++e, ++i) { cout << i << ". el: " <