mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Pass std::vector arguments by reference instead of by value
This commit is contained in:
parent
d084279891
commit
967cf0b430
@ -62,8 +62,8 @@ public:
|
||||
|
||||
MOCK_METHOD2(findAccount, Account *(const char*, const char*));
|
||||
MOCK_METHOD3(addAccount, void(const char*, const char*, Account*));
|
||||
MOCK_METHOD1(findAccountBayes, Account *(std::vector<const char*>));
|
||||
MOCK_METHOD2(addAccountBayes, void(std::vector<const char*>, Account*));
|
||||
MOCK_METHOD1(findAccountBayes, Account *(std::vector<const char*>&));
|
||||
MOCK_METHOD2(addAccountBayes, void(std::vector<const char*>&, Account*));
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user