Remove defaultable move constructor.

This commit is contained in:
David Ungar
2017-12-06 15:30:03 -08:00
parent 70e5981407
commit fb93cfd389

View File

@@ -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())