We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49aa595 commit aa9b50cCopy full SHA for aa9b50c
include/SoapySDR/Config.h
@@ -48,7 +48,6 @@
48
#define SOAPY_SDR_EXTERN
49
#endif // SOAPY_SDR_DLL
50
51
-#include <iso646.h>
52
53
#ifndef _MSC_VER
54
#include <stdbool.h>
include/SoapySDR/Config.hpp
@@ -10,4 +10,9 @@
10
11
#pragma once
12
#include <SoapySDR/Config.h>
13
-#include <ciso646>
+
14
+#if (defined(_MSC_VER) || __cplusplus < 201703L)
15
+ // For old or nonconforming compilers,
16
+ // using the alternative operator representations may require including this header.
17
+ #include <ciso646>
18
+#endif
0 commit comments