We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e271889 commit 0bd6b91Copy full SHA for 0bd6b91
llvm/include/llvm/IR/DerivedTypes.h
@@ -166,7 +166,7 @@ class FunctionCallee {
166
// Allow implicit conversion from types which have a getFunctionType member
167
// (e.g. Function and InlineAsm).
168
template <typename T,
169
- typename U = std::enable_if<&T::getFunctionType != nullptr, void>>
+ typename U = std::enable_if<(&T::getFunctionType != nullptr), void>>
170
FunctionCallee(T *Fn)
171
: FnTy(Fn ? Fn->getFunctionType() : nullptr), Callee(Fn) {}
172
0 commit comments