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 7905a9a commit a776234Copy full SHA for a776234
include/swift/SIL/SILBridgingUtils.h
@@ -29,10 +29,6 @@ inline SILNode *castToSILNode(BridgedNode node) {
29
return static_cast<SILNode *>(node.obj);
30
}
31
32
-template <class A = SILArgument> A *castToArgument(BridgedArgument argument) {
33
- return cast<A>(static_cast<SILArgument *>(argument.obj));
34
-}
35
-
36
ArrayRef<SILValue> getSILValues(BridgedValueArray values,
37
SmallVectorImpl<SILValue> &storage);
38
0 commit comments