Skip to content

Commit

Permalink
Update Tools.cpp no SSE p2
Browse files Browse the repository at this point in the history
  • Loading branch information
ladnir authored May 25, 2024
1 parent 211fe2d commit f0a4c7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libOTe/Tools/Tools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ namespace osuCrypto {
{
#if defined(ENABLE_AVX)
avx_transpose(in, out);
#else if defined(ENABLE_SSE)
#elif defined(ENABLE_SSE)
sse_transpose(in, out);
#else
throw std::runtime_error("not impl. " LOCATION);
Expand Down

0 comments on commit f0a4c7f

Please sign in to comment.