2008-08-23 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Clear table item.
	* src/Dictionary.cc
This commit is contained in:
Tatsuhiro Tsujikawa 2008-08-23 15:09:29 +00:00
parent 8503419ae3
commit df9d042d25
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2008-08-23 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Clear table item.
* src/Dictionary.cc
2008-08-23 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Fixed error handling of lseek.

View File

@ -49,6 +49,7 @@ void Dictionary::clearTable() {
itr != table.end(); itr++) {
delete itr->second;
}
table.clear();
}
const MetaEntry* Dictionary::get(const std::string& name) const {