Mark List::append/insert deprecated in favor of push_back/push_front for consistency with Queue

This commit is contained in:
Tim Wojtulewicz 2019-07-19 14:53:01 -07:00 committed by Jon Siwek
parent d2d5043bf0
commit 6144f459e1
39 changed files with 221 additions and 211 deletions

View file

@ -64,7 +64,7 @@ public:
void InsertCCL(const char* txt, CCL* ccl) { ccl_dict.Insert(txt, ccl); }
int InsertCCL(CCL* ccl)
{
ccl_list.append(ccl);
ccl_list.push_back(ccl);
return ccl_list.length() - 1;
}
CCL* LookupCCL(const char* txt) { return ccl_dict.Lookup(txt); }