| Index: mojo/public/cpp/bindings/tests/struct_with_traits_impl.cc
|
| diff --git a/mojo/public/cpp/bindings/tests/struct_with_traits_impl.cc b/mojo/public/cpp/bindings/tests/struct_with_traits_impl.cc
|
| index e99ec2a331698d86509f7d3ce4f4d1ed3f85453c..1abbad74e3bb9e5b23aea0c79cc19e8229596236 100644
|
| --- a/mojo/public/cpp/bindings/tests/struct_with_traits_impl.cc
|
| +++ b/mojo/public/cpp/bindings/tests/struct_with_traits_impl.cc
|
| @@ -18,12 +18,12 @@ StructWithTraitsImpl::~StructWithTraitsImpl() {}
|
| StructWithTraitsImpl::StructWithTraitsImpl(const StructWithTraitsImpl& other) =
|
| default;
|
|
|
| -PassByValueStructWithTraitsImpl::PassByValueStructWithTraitsImpl() {}
|
| +MoveOnlyStructWithTraitsImpl::MoveOnlyStructWithTraitsImpl() {}
|
|
|
| -PassByValueStructWithTraitsImpl::PassByValueStructWithTraitsImpl(
|
| - PassByValueStructWithTraitsImpl&& other) = default;
|
| +MoveOnlyStructWithTraitsImpl::MoveOnlyStructWithTraitsImpl(
|
| + MoveOnlyStructWithTraitsImpl&& other) = default;
|
|
|
| -PassByValueStructWithTraitsImpl::~PassByValueStructWithTraitsImpl() {}
|
| +MoveOnlyStructWithTraitsImpl::~MoveOnlyStructWithTraitsImpl() {}
|
|
|
| } // namespace test
|
| } // namespace mojo
|
|
|