patrick
/
plasp
Archived
1
0
Fork 0

Fixed wrong operator in debug output.

This commit is contained in:
Patrick Lühne 2016-05-25 23:22:25 +02:00
parent dda81e9011
commit 045239b620
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ namespace sas
//
////////////////////////////////////////////////////////////////////////////////////////////////////
std::ostream &operator >>(std::ostream &ostream, const Description &description);
std::ostream &operator <<(std::ostream &ostream, const Description &description);
////////////////////////////////////////////////////////////////////////////////////////////////////

View File

@ -13,7 +13,7 @@ namespace sas
//
////////////////////////////////////////////////////////////////////////////////////////////////////
std::ostream &operator >>(std::ostream &ostream, const Description &description)
std::ostream &operator <<(std::ostream &ostream, const Description &description)
{
// Metric section
ostream << "uses action costs: " << (description.usesActionCosts() ? "yes" : "no") << std::endl;