Skip to content

Commit aa9b50c

Browse files
committed
Remove iso646.h include from Config.h
1 parent 49aa595 commit aa9b50c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

include/SoapySDR/Config.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
#define SOAPY_SDR_EXTERN
4949
#endif // SOAPY_SDR_DLL
5050

51-
#include <iso646.h>
5251

5352
#ifndef _MSC_VER
5453
#include <stdbool.h>

include/SoapySDR/Config.hpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,9 @@
1010

1111
#pragma once
1212
#include <SoapySDR/Config.h>
13-
#include <ciso646>
13+
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

Comments
 (0)