fix remaining issues with theme refactor branch

This commit is contained in:
IntelOrca 2016-01-30 11:12:25 +00:00
parent 7e1ce4fcc6
commit 5c2e951d3f
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ namespace Json
size_t fileLength = (size_t)fs.GetLength();
if (fileLength > maxSize)
{
throw IOException("Language file too large.");
throw IOException("Json file too large.");
}
utf8 * fileData = Memory::Allocate<utf8>(fileLength + 1);

View File

@ -47,7 +47,7 @@ public:
void Insert(T item, size_t index)
{
Guard::ArgumentInRange(index, (size_t)0, this->size());
this->insert()
this->insert(this->begin() + index, item);
}
bool Remove(T item)