Merge pull request #517 from erwincoumans/master

b3CreateBoxCommandSetColorRGBA: allow to specify color when creating …
This commit is contained in:
erwincoumans
2015-11-06 17:41:40 -08:00
16 changed files with 96 additions and 588 deletions

View File

@@ -399,6 +399,10 @@ protected:
return find(key);
}
const Value* operator[](const Key& key) const {
return find(key);
}
const Value* find(const Key& key) const
{
int index = findIndex(key);