Skip to content

Commit

Permalink
[test-tree-container] setter cant deduce type from arguments!
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherlam committed Aug 20, 2023
1 parent 3cce5f1 commit 6c9dd43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gnucash/gnome-utils/test/test-tree-container.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ TEST(GncTreeContainer, Basic)
auto str = std::string("string ") + std::to_string(i);
auto iter = container.append ();
iter->set_string (COLUMN_STRING, str);
iter->set<int> (COLUMN_INT, i);
iter->set<bool> (COLUMN_BOOLEAN, false);
iter->set (COLUMN_INT, i);
iter->set (COLUMN_BOOLEAN, false);
}

// test non-empty
Expand Down

0 comments on commit 6c9dd43

Please sign in to comment.