From 9b9fcfae4c0c97d1d2d413d88097072fff254952 Mon Sep 17 00:00:00 2001 From: Antoine Fraboulet Date: Mon, 26 Dec 2005 15:53:37 +0000 Subject: [PATCH] - re-enabling toString() --- game/turn.cpp | 2 +- game/turn.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/game/turn.cpp b/game/turn.cpp index 6a2ecc9..7335536 100644 --- a/game/turn.cpp +++ b/game/turn.cpp @@ -44,6 +44,7 @@ void Turn::operator=(const Turn &iOther) pldrack = iOther.pldrack; round = iOther.round; } +#endif string Turn::toString(bool iShowExtraSigns) const @@ -56,7 +57,6 @@ string Turn::toString(bool iShowExtraSigns) const rs = rs + m_pldrack.toString() + " " + m_round.toString(); return rs; } -#endif /// Local Variables: diff --git a/game/turn.h b/game/turn.h index eb629ae..2065c26 100644 --- a/game/turn.h +++ b/game/turn.h @@ -48,8 +48,8 @@ public: #if 0 void operator=(const Turn &iOther); - string toString(bool iShowExtraSigns = false) const; #endif + string toString(bool iShowExtraSigns = false) const; private: int m_num;