Skip to content
Snippets Groups Projects
Commit fcda2d58 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

fix diff presentation

parent 9433d7fb
No related branches found
No related tags found
No related merge requests found
......@@ -255,7 +255,7 @@ template <class T, class R> void AutomatonCompare::mapCompare(const std::map<T,
}
std::cout << "---" << std::endl;
for(typename std::map<T, R>::const_iterator iter = bMinusA.begin(); iter != bMinusA.end(); iter++) {
std::cout << "< " << iter->first << ", " << iter->second << std::endl;
std::cout << "> " << iter->first << ", " << iter->second << std::endl;
}
}
 
......
......@@ -169,7 +169,7 @@ template <class T, class R> void GrammarCompare::mapCompare(const std::map<T, R>
}
std::cout << "---" << std::endl;
for(typename std::map<T, R>::const_iterator iter = bMinusA.begin(); iter != bMinusA.end(); iter++) {
std::cout << "< " << iter->first << ", " << iter->second << std::endl;
std::cout << "> " << iter->first << ", " << iter->second << std::endl;
}
}
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment