Skip to content

Commit

Permalink
Prevent compilation error in test for issue #29 (wip)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed May 27, 2019
1 parent 1b47009 commit 491e7df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/expected.t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1723,15 +1723,15 @@ CASE( "issue-15" )
(void) nonstd::expected< int, int >( 12).value();
}

// issue #xx, https://github.com/martinmoene/expected-lite/issues/xx
// issue #29, https://github.com/martinmoene/expected-lite/issues/29

struct issue_xx
{
issue_xx() {}
issue_xx( issue_xx const & ) {}
issue_xx & operator=( issue_xx const & ) { return *this; }

#if 0
#if 1
issue_xx( issue_xx && ) {}
issue_xx & operator=( issue_xx && ) { return *this; }
#else
Expand Down

0 comments on commit 491e7df

Please sign in to comment.