Skip to content

Commit

Permalink
Remove defined(__INTEL_COMPILER) as suggested by @hpkfft under #543…
Browse files Browse the repository at this point in the history
  • Loading branch information
rwgk committed Dec 19, 2024
1 parent 7fb89ca commit 738b7ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/pybind11/conduit/pybind11_platform_abi_id.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# define PYBIND11_COMPILER_TYPE "gcc_cygwin"
# elif defined(_MSC_VER)
# define PYBIND11_COMPILER_TYPE "msvc"
# elif defined(__INTEL_COMPILER) || defined(__clang__) || defined(__GNUC__)
# elif defined(__clang__) || defined(__GNUC__)
# define PYBIND11_COMPILER_TYPE "system" // Assumed compatible with system compiler.
# else
# error "Unknown PYBIND11_COMPILER_TYPE: PLEASE REVISE THIS CODE."
Expand Down

0 comments on commit 738b7ec

Please sign in to comment.