Ide/Debuggers/Gdb_MI2 : fix compilation on windows

git-svn-id: svn://ultimatepp.org/upp/trunk@6956 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
micio 2014-02-26 09:43:52 +00:00
parent 8250229d26
commit 07e3e932c9
2 changed files with 4 additions and 4 deletions

View file

@ -370,7 +370,7 @@ int MIValue::Parse(String const &s, int i)
}
}
MIValue const &MIValue::operator=(const MIValue &v)
MIValue const &MIValue::operator=(MIValue &v)
{
Clear();
type = v.type;
@ -396,7 +396,7 @@ MIValue::MIValue()
Clear();
}
MIValue::MIValue(MIValue const &v)
MIValue::MIValue(MIValue &v)
{
Clear();
type = v.type;

View file

@ -38,10 +38,10 @@ class MIValue : public Moveable<MIValue>
// check for emptyness
bool IsEmpty(void) const;
MIValue const &operator=(const MIValue &v);
MIValue const &operator=(MIValue &v);
MIValue const &operator=(String const &s);
MIValue();
MIValue(MIValue const &v);
MIValue(MIValue &v);
MIValue(String const &s);
void Clear(void);