Skip to content

Commit 2b2dd23

Browse files
authored
Fix missing argument in utils/swift-api-dump.py. (#41178)
`--enable-experimental-string-processing` argument was missing. `args.enable_experimental_string_processing` is being read at the bottom of the script. Resolves rdar://88420489.
1 parent 039403c commit 2b2dd23

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

utils/swift-api-dump.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ def create_parser():
106106
help='Enable experimental concurrency model.')
107107
parser.add_argument('--enable-experimental-distributed', action='store_true',
108108
help='Enable experimental distributed actors.')
109+
parser.add_argument('--enable-experimental-string-processing', action='store_true',
110+
help='Enable experimental string processing.')
109111
parser.add_argument('-swift-version', metavar='N',
110112
help='the Swift version to use')
111113
parser.add_argument('-show-overlay', action='store_true',

0 commit comments

Comments
 (0)