mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Remove todo comments on replacement of std::vector by std::list
Replacing std::vector by std::list wouldn't have any advantage
This commit is contained in:
parent
a9d85e8f8e
commit
67f63053fb
@ -84,7 +84,6 @@ gnc_account_imap_find_account_bayes (
|
||||
GncImportMatchMap *imap,
|
||||
GList *tokens)
|
||||
{
|
||||
// \todo use std::list instead of std::vector, since GList is a double-linked list like std::list
|
||||
std::vector<const char*> tokenVec;
|
||||
|
||||
for (auto token = tokens; token; token = token->next)
|
||||
@ -101,7 +100,6 @@ gnc_account_imap_add_account_bayes (
|
||||
GList *tokens,
|
||||
Account *acc)
|
||||
{
|
||||
// \todo use std::list instead of std::vector, since GList is a double-linked list like std::list
|
||||
std::vector<const char*> tokenVec;
|
||||
|
||||
for (auto token = tokens; token; token = token->next)
|
||||
|
Loading…
Reference in New Issue
Block a user