mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2025-01-18 10:26:15 +01:00
- re-enabling toString()
This commit is contained in:
parent
ce001c7aa2
commit
9b9fcfae4c
2 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue