summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2022-06-06 04:11:58 +1000
committer Vas Crabb <vas@vastheman.com>2022-06-06 04:11:58 +1000
commitf923edc4660f8f5b91dd9d1a758da11454a163dd (patch)
tree3ae8e9d819f9b13e6780999ef3c1a9ec913347f2 /src/lib
parentea1e51636c68f6d07b3d62b7b9d960567d4e3f33 (diff)
netlist/plib: Fix compile with Apple clang.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/netlist/plib/ptypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/netlist/plib/ptypes.h b/src/lib/netlist/plib/ptypes.h
index fcd72d779c3..cf0476beb4c 100644
--- a/src/lib/netlist/plib/ptypes.h
+++ b/src/lib/netlist/plib/ptypes.h
@@ -227,7 +227,7 @@ namespace plib
using mingw = std::integral_constant<bool, false>;
#endif
#if defined(__APPLE__)
- using clang_noexcept_issue = std::integral_constant<bool, (type::value == ci_compiler::CLANG) && (version::vmajor::full < 110003)>;
+ using clang_noexcept_issue = std::integral_constant<bool, (type::value == ci_compiler::CLANG) && (version::full::value < 110003)>;
#else
using clang_noexcept_issue = std::integral_constant<bool, (type::value == ci_compiler::CLANG) && (version::vmajor::value < 9)>;
#endif