boostorg / system

Boost.org system module
http://boost.org/libs/system
35 stars 86 forks source link

Made result::error movable. #109

Closed klemens-morgenstern closed 1 year ago

klemens-morgenstern commented 1 year ago

Closes #108.

pdimov commented 1 year ago

I don't see why you seem to have made XM copyable. The test is supposed to test a move-only type.

pdimov commented 1 year ago

You can't move from const objects. These tests only worked because of the copy constructor.

klemens-morgenstern commented 1 year ago

yeah, i missed the right-const.