mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Remove defaultable move constructor.
This commit is contained in:
@@ -71,10 +71,7 @@ public:
|
||||
for (InputFile input : other.getAllFiles())
|
||||
addInput(input);
|
||||
}
|
||||
FrontendInputs(FrontendInputs &&other) {
|
||||
AllFiles = std::move(other.AllFiles);
|
||||
PrimaryInputs = std::move(other.PrimaryInputs);
|
||||
}
|
||||
|
||||
FrontendInputs &operator=(const FrontendInputs &other) {
|
||||
clearInputs();
|
||||
for (InputFile input : other.getAllFiles())
|
||||
|
||||
Reference in New Issue
Block a user