Skip to content

Commit

Permalink
Revert "Update VecAddMoveOnlyFunctor and VecAddWithIsSupportedMethod …
Browse files Browse the repository at this point in the history
…with Default constructor (microsoft#17705)"

This reverts commit fc9a69d.

This is a prerequisite to reverting
0141e27, which is the revision
that I actually want to revert.
  • Loading branch information
Rob Vinluan authored and rvinluan-sidefx committed Jan 22, 2025
1 parent 7757d1c commit c540c41
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions onnxruntime/test/framework/tunable_op_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,8 @@ TEST(TunableOp, OpWrapsMutableFunctor) {

class VecAddMoveOnlyFunctor {
public:
VecAddMoveOnlyFunctor() = default;
VecAddMoveOnlyFunctor() {
}
VecAddMoveOnlyFunctor(VecAddMoveOnlyFunctor&&) = default;
ORT_DISALLOW_COPY_AND_ASSIGNMENT(VecAddMoveOnlyFunctor);

Expand All @@ -289,7 +290,8 @@ TEST(TunableOp, OpWrapsMoveOnlyFunctor) {

class VecAddWithIsSupportedMethod {
public:
VecAddWithIsSupportedMethod() = default;
VecAddWithIsSupportedMethod() {
}
VecAddWithIsSupportedMethod(VecAddWithIsSupportedMethod&&) = default;
ORT_DISALLOW_COPY_AND_ASSIGNMENT(VecAddWithIsSupportedMethod);

Expand Down

0 comments on commit c540c41

Please sign in to comment.