Skip to content

Commit

Permalink
avx_enabled(): TRUE/FALSE was interchanged
Browse files Browse the repository at this point in the history
  • Loading branch information
lschneiderbauer committed Dec 29, 2024
1 parent 51190fe commit 8a05319
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interface_fcwt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ cpp11::r_bool has_openmp() {
[[cpp11::register]]
cpp11::r_bool has_avx() {
#ifdef AVX
return(false);
#else
return(true);
#else
return(false);
#endif
}

Expand Down

0 comments on commit 8a05319

Please sign in to comment.