[Lemon-commits] [lemon_svn] klao: r2605 - hugo/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:53:51 CET 2006
Author: klao
Date: Fri Mar 3 22:49:39 2006
New Revision: 2605
Modified:
hugo/trunk/lemon/lemon_reader.h
Log:
Bugfix: an ugly artefact of the 'id' -> 'label' renaming
Modified: hugo/trunk/lemon/lemon_reader.h
==============================================================================
--- hugo/trunk/lemon/lemon_reader.h (original)
+++ hugo/trunk/lemon/lemon_reader.h Fri Mar 3 22:49:39 2006
@@ -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;
}
More information about the Lemon-commits
mailing list