From 67f63053fbae56029a71d8010fed83dc3623f4ff Mon Sep 17 00:00:00 2001 From: Christian Gruber Date: Wed, 3 Jun 2020 23:26:49 +0200 Subject: [PATCH] Remove todo comments on replacement of std::vector by std::list Replacing std::vector by std::list wouldn't have any advantage --- libgnucash/engine/mocks/gmock-Account.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/libgnucash/engine/mocks/gmock-Account.cpp b/libgnucash/engine/mocks/gmock-Account.cpp index 2e5f370606..5763284c41 100644 --- a/libgnucash/engine/mocks/gmock-Account.cpp +++ b/libgnucash/engine/mocks/gmock-Account.cpp @@ -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 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 tokenVec; for (auto token = tokens; token; token = token->next)