mirror of
https://github.com/google/googletest.git
synced 2025-04-06 22:15:01 +00:00
Automated Code Change
PiperOrigin-RevId: 620448229 Change-Id: I487a0d8a8f89ebe82c9ec66fbb60cbe2203188c9
This commit is contained in:
parent
eff443c6ef
commit
77afe8e014
1 changed files with 2 additions and 2 deletions
|
@ -71,7 +71,7 @@ class GTEST_API_ FilePath {
|
|||
public:
|
||||
FilePath() : pathname_("") {}
|
||||
FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) {}
|
||||
FilePath(FilePath&& rhs) : pathname_(std::move(rhs.pathname_)) {}
|
||||
FilePath(FilePath&& rhs) noexcept : pathname_(std::move(rhs.pathname_)) {}
|
||||
|
||||
explicit FilePath(std::string pathname) : pathname_(std::move(pathname)) {
|
||||
Normalize();
|
||||
|
@ -81,7 +81,7 @@ class GTEST_API_ FilePath {
|
|||
Set(rhs);
|
||||
return *this;
|
||||
}
|
||||
FilePath& operator=(FilePath&& rhs) {
|
||||
FilePath& operator=(FilePath&& rhs) noexcept {
|
||||
pathname_ = std::move(rhs.pathname_);
|
||||
return *this;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue