This is an automated email from the ASF dual-hosted git repository.
mzhu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git
The following commit(s) were added to refs/heads/master by this push:
new 24d6f1b Removed a redundant `std::move` in the return statement.
24d6f1b is described below
commit 24d6f1b81efb4d201dc280cc166e827efa1cc43a
Author: Meng Zhu <[email protected]>
AuthorDate: Wed Jul 10 18:02:48 2019 -0700
Removed a redundant `std::move` in the return statement.
---
src/tests/master_quota_tests.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/tests/master_quota_tests.cpp b/src/tests/master_quota_tests.cpp
index 0e23bc1..a1b3769 100644
--- a/src/tests/master_quota_tests.cpp
+++ b/src/tests/master_quota_tests.cpp
@@ -109,7 +109,7 @@ static QuotaConfig createQuotaConfig(
(*config.mutable_limits())[name] = scalar;
}
- return std::move(config);
+ return config;
}