mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
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:
parent
8250229d26
commit
07e3e932c9
2 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue