Skip to content

Commit

Permalink
After merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
arximboldi committed Aug 22, 2024
1 parent 6541206 commit d3860a6
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions test/box/recursive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

#include <boost/optional.hpp>
#include <boost/variant.hpp>
#include <catch.hpp>

#include <catch2/catch_test_macros.hpp>

Expand Down Expand Up @@ -133,11 +132,13 @@ struct a_type
b_type::b_type(int a, immer::box<a_type> val)
: a(a)
, val(val)
{}
{
}

a_type::a_type()
: b{}
{}
{
}

} // namespace example1

Expand Down Expand Up @@ -173,11 +174,13 @@ struct a_type
b_type::b_type(int a, immer::box<a_type> val)
: a(a)
, val(val)
{}
{
}

a_type::a_type()
: b{}
{}
{
}

} // namespace example2

Expand Down

0 comments on commit d3860a6

Please sign in to comment.