Skip to content

Commit

Permalink
Fix MSVC does not know 'ssize_t'
Browse files Browse the repository at this point in the history
  • Loading branch information
SSoelvsten committed Nov 17, 2023
1 parent f946a8f commit 5ba29d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/adiar/bdd/test_build.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1533,8 +1533,8 @@ go_bandit([]() {
AssertThat(res.number_of_terminals(true), Is().EqualTo(3u));
});

it("works with ForwardIt::value_type == 'ssize_t'", [&]() {
std::vector<ssize_t> vars = { 1, -2, 3, 5 };
it("works with ForwardIt::value_type == 'int64_t'", [&]() {
std::vector<int64_t> vars = { 1, -2, 3, 5 };

bdd res = bdd_or(vars.rbegin(), vars.rend());
node_test_stream ns(res);
Expand Down

0 comments on commit 5ba29d9

Please sign in to comment.