# HG changeset patch # User klao # Date 1141422579 0 # Node ID b7a70cdb55209527d66eee3136b888adb09bc720 # Parent 5dc13b93f8b4ba917a814b334df0c990d0acd8d8 Bugfix: an ugly artefact of the 'id' -> 'label' renaming diff -r 5dc13b93f8b4 -r b7a70cdb5520 lemon/lemon_reader.h --- a/lemon/lemon_reader.h Fri Mar 03 12:35:32 2006 +0000 +++ b/lemon/lemon_reader.h Fri Mar 03 21:49:39 2006 +0000 @@ -862,7 +862,7 @@ std::istringstream ls(line); std::string command; std::string id; - ls >> command >> name; + ls >> command >> id; return command == "@nodeset" && name == id; } @@ -1085,7 +1085,7 @@ std::istringstream ls(line); std::string command; std::string id; - ls >> command >> name; + ls >> command >> id; return command == "@edgeset" && name == id; } @@ -1381,7 +1381,7 @@ std::istringstream ls(line); std::string command; std::string id; - ls >> command >> name; + ls >> command >> id; return command == "@uedgeset" && name == id; } @@ -1548,7 +1548,7 @@ std::istringstream ls(line); std::string command; std::string id; - ls >> command >> name; + ls >> command >> id; return command == "@nodes" && name == id; } @@ -1654,7 +1654,7 @@ std::istringstream ls(line); std::string command; std::string id; - ls >> command >> name; + ls >> command >> id; return command == "@edges" && name == id; } @@ -1778,7 +1778,7 @@ std::istringstream ls(line); std::string command; std::string id; - ls >> command >> name; + ls >> command >> id; return command == "@uedges" && name == id; } @@ -1922,7 +1922,7 @@ std::istringstream ls(line); std::string command; std::string id; - ls >> command >> name; + ls >> command >> id; return command == "@attributes" && name == id; }