Skip to content

Commit

Permalink
msvc: Check for _MSC_VER
Browse files Browse the repository at this point in the history
MSVC requires special treatment. We check for it now.
  • Loading branch information
jdemel committed Oct 2, 2021
1 parent 6f6ef23 commit 3e42fa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/volk/volk_complex.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <volk/volk_common.h>

__VOLK_DECL_BEGIN
#ifndef __STDC_NO_COMPLEX__
#ifndef _MSC_VER
// Obviously, we would love `typedef float complex lv_32fc_t` to work.
// However, this clashes with C++ definitions.
// error: expected initializer before ‘lv_32fc_t’
Expand Down

0 comments on commit 3e42fa5

Please sign in to comment.