mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
Removed forgotten DUMPs
git-svn-id: svn://ultimatepp.org/upp/trunk@2807 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
9435aa8bc4
commit
09414e3386
1 changed files with 0 additions and 6 deletions
|
|
@ -322,7 +322,6 @@ Vector<Value>& ValueArray::Clone() {
|
|||
|
||||
ValueArray::ValueArray() {
|
||||
data = &Single<NullData>();
|
||||
DDUMPC(data->data);
|
||||
data->Retain();
|
||||
}
|
||||
|
||||
|
|
@ -493,7 +492,6 @@ void ValueMap::Init0()
|
|||
{
|
||||
data = &Single<NullData>();
|
||||
data->Retain();
|
||||
DDUMP(data->value);
|
||||
}
|
||||
|
||||
ValueMap::ValueMap(const ValueMap& v)
|
||||
|
|
@ -554,16 +552,12 @@ void ValueMap::Clear() {
|
|||
|
||||
void ValueMap::Add(const Value& key, const Value& value) {
|
||||
Data& d = Clone();
|
||||
DDUMP(key);
|
||||
DDUMP(value);
|
||||
d.key.Add(key);
|
||||
d.value.Add(value);
|
||||
DDUMP(d.value);
|
||||
}
|
||||
|
||||
Value ValueMap::operator[](const Value& key) const
|
||||
{
|
||||
DDUMP(data->value);
|
||||
int q = data->key.Find(key);
|
||||
return q >= 0 ? data->value[q] : ErrorValue();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue