summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support/Path.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2017-11-14 00:31:28 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2017-11-14 00:31:28 +0000
commite41151965f04bf631923343566a91c4904f100a6 (patch)
treee2a3b9df7954e82cbbb2917a1f4b3d934edf8f45 /llvm/lib/Support/Path.cpp
parente66d232c05fdd4bab1b54e5983cee32f0b8ed555 (diff)
downloadbcm5719-llvm-e41151965f04bf631923343566a91c4904f100a6.tar.gz
bcm5719-llvm-e41151965f04bf631923343566a91c4904f100a6.zip
Add a move assignment operator to TempFile. NFC.
llvm-svn: 318122
Diffstat (limited to 'llvm/lib/Support/Path.cpp')
-rw-r--r--llvm/lib/Support/Path.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/Support/Path.cpp b/llvm/lib/Support/Path.cpp
index 54ea76b0f92..63ea9119fab 100644
--- a/llvm/lib/Support/Path.cpp
+++ b/llvm/lib/Support/Path.cpp
@@ -761,10 +761,12 @@ std::error_code createUniqueFile(const Twine &Model,
}
TempFile::TempFile(StringRef Name, int FD) : TmpName(Name), FD(FD) {}
-TempFile::TempFile(TempFile &&Other) {
+TempFile::TempFile(TempFile &&Other) { *this = std::move(Other); }
+TempFile &TempFile::operator=(TempFile &&Other) {
TmpName = std::move(Other.TmpName);
FD = Other.FD;
Other.Done = true;
+ return *this;
}
TempFile::~TempFile() { assert(Done); }
OpenPOWER on IntegriCloud