STYLE: add edge(labelPair) constructor, debug info etc.

This commit is contained in:
Mark Olesen
2017-05-04 02:42:50 +02:00
parent f7e502d459
commit e105e30bfb
4 changed files with 95 additions and 33 deletions

View File

@ -52,7 +52,7 @@ int main(int argc, char *argv[])
Info<< nl << "And again using STL iterator: " << nl << endl;
for (auto const& val : myList)
for (const auto& val : myList)
{
Info<< "element:" << val << endl;
}
@ -72,7 +72,7 @@ int main(int argc, char *argv[])
myList.remove(iter);
}
for (auto const& val : const_myList)
for (const auto& val : const_myList)
{
Info<< "element:" << val << endl;
}