Skip to content

Commit

Permalink
adopt improvement from scipy sources (scipy/scipy#19761)
Browse files Browse the repository at this point in the history
  • Loading branch information
mreineck committed Dec 30, 2023
1 parent 128707f commit 9d3ab05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pocketfft_hdronly.h
Expand Up @@ -43,7 +43,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#error This file is C++ and requires a C++ compiler.
#endif

#if !(__cplusplus >= 201103L || _MSVC_LANG+0L >= 201103L)
#if !(__cplusplus >= 201103L || (defined(_MSVC_LANG) && _MSVC_LANG >= 201103L))
#error This file requires at least C++11 support.
#endif

Expand Down

0 comments on commit 9d3ab05

Please sign in to comment.