You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
12 lines
320 B
Diff
12 lines
320 B
Diff
--- libi2pd/util.cpp
|
|
+++ libi2pd/util.cpp
|
|
@@ -315,7 +315,7 @@ namespace util
|
|
|
|
bool Mapping::Contains (std::string_view param) const
|
|
{
|
|
-#if __cplusplus >= 202002L // C++20
|
|
+#if !defined(__clang__) && (__cplusplus >= 202002L) // C++20
|
|
return m_Options.contains (param);
|
|
#else
|
|
auto it = m_Options.find (param);
|