[Mlir-commits] [llvm] [mlir] [LLVM][MLIR] Fix TU-local entity exposure for C++20 module compatibility (PR #198023)
Matt Arsenault
llvmlistbot at llvm.org
Fri May 15 14:05:44 PDT 2026
================
@@ -25,15 +25,15 @@ using check_has_member_remove_if_t =
decltype(std::declval<Set>().remove_if(std::declval<Fn>()));
template <typename Set, typename Fn>
-static constexpr bool HasMemberRemoveIf =
+inline constexpr bool HasMemberRemoveIf =
----------------
arsenm wrote:
inline is redundant with constexpr
https://github.com/llvm/llvm-project/pull/198023
More information about the Mlir-commits
mailing list