From 045239b6201296cbb3fd1a4b67e4f2b83221f30d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Wed, 25 May 2016 23:22:25 +0200 Subject: [PATCH] Fixed wrong operator in debug output. --- include/plasp/sas/Debugging.h | 2 +- src/plasp/sas/Debugging.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/plasp/sas/Debugging.h b/include/plasp/sas/Debugging.h index 3f8f778..811ec13 100644 --- a/include/plasp/sas/Debugging.h +++ b/include/plasp/sas/Debugging.h @@ -16,7 +16,7 @@ namespace sas // //////////////////////////////////////////////////////////////////////////////////////////////////// -std::ostream &operator >>(std::ostream &ostream, const Description &description); +std::ostream &operator <<(std::ostream &ostream, const Description &description); //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/src/plasp/sas/Debugging.cpp b/src/plasp/sas/Debugging.cpp index f84e8c1..1fb2ffa 100644 --- a/src/plasp/sas/Debugging.cpp +++ b/src/plasp/sas/Debugging.cpp @@ -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;