Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm committed Nov 16, 2024
1 parent 9773835 commit e674fa7
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/test/OpenEXRTest/testAttributes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -620,12 +620,13 @@ struct TestType

static void assert_count (int dc, int d, int cc, int ao, int mc, int mao)
{
assert (dc == default_constructor);
assert (d == destructor);
assert (cc == copy_constructor);
assert (ao == assignment_operator);
assert (mc == move_constructor);
assert (mao == move_assignment_operator);
std::cout << "assert_count [" << dc << " " << default_constructor
<< "] [" << d << " " << destructor
<< "] [" << cc << " " << copy_constructor
<< "] [" << ao << " " << assignment_operator
<< "] [" << mc << " " << move_constructor
<< "] [" << mao << " " << move_assignment_operator
<< ")" << std::endl;
}

static void reset ()
Expand Down

0 comments on commit e674fa7

Please sign in to comment.