Skip to content

Commit 9842aee

Browse files
committed
fix(functional-symmetric-operation):
fix msvc build error
1 parent aabed26 commit 9842aee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/stdsharp/functional/symmetric_operations.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ namespace stdsharp::functional
6161
}
6262
};
6363

64-
void symmetric_operation(auto&&...) = delete;
64+
template<typename... T>
65+
void symmetric_operation(T&&...) = delete;
6566

6667
struct adl_symmetric_operation_fn
6768
{

0 commit comments

Comments
 (0)