Skip to content

Commit 738b7ec

Browse files
committed
Remove defined(__INTEL_COMPILER) as suggested by @hpkfft under #5439 (comment)
1 parent 7fb89ca commit 738b7ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/pybind11/conduit/pybind11_platform_abi_id.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# define PYBIND11_COMPILER_TYPE "gcc_cygwin"
2424
# elif defined(_MSC_VER)
2525
# define PYBIND11_COMPILER_TYPE "msvc"
26-
# elif defined(__INTEL_COMPILER) || defined(__clang__) || defined(__GNUC__)
26+
# elif defined(__clang__) || defined(__GNUC__)
2727
# define PYBIND11_COMPILER_TYPE "system" // Assumed compatible with system compiler.
2828
# else
2929
# error "Unknown PYBIND11_COMPILER_TYPE: PLEASE REVISE THIS CODE."

0 commit comments

Comments
 (0)