Skip to content

Commit 509e74e

Browse files
committed
pr feedback
1 parent 72ee150 commit 509e74e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/swift/Option/Options.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ def module_abi_name : Separate<["-"], "module-abi-name">,
482482
Flags<[FrontendOption, ModuleInterfaceOption]>,
483483
HelpText<"ABI name to use for the contents of this module">;
484484
def package_name : Separate<["-"], "package-name">,
485-
Flags<[FrontendOption, ModuleInterfaceOption]>,
485+
Flags<[FrontendOption, ModuleInterfaceOptionIgnorable]>,
486486
HelpText<"Name of the package the module belongs to">;
487487

488488
def emit_module : Flag<["-"], "emit-module">,

lib/Serialization/ModuleFormat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const uint16_t SWIFTMODULE_VERSION_MAJOR = 0;
5858
/// describe what change you made. The content of this comment isn't important;
5959
/// it just ensures a conflict if two people change the module format.
6060
/// Don't worry about adhering to the 80-column limit for this line.
61-
const uint16_t SWIFTMODULE_VERSION_MINOR = 727; // closure capture args
61+
const uint16_t SWIFTMODULE_VERSION_MINOR = 728; // package name field
6262

6363
/// A standard hash seed used for all string hashes in a serialized module.
6464
///

0 commit comments

Comments
 (0)