This is an automated email from the ASF dual-hosted git repository. bmahler pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mesos.git
commit ff522ceac7d8f6c24754649e087874e413486658 Author: Devin Leamy <[email protected]> AuthorDate: Tue Feb 13 20:56:38 2024 +0000 Add missing std:: namespace qualification. --- src/master/main.cpp | 2 +- src/slave/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/master/main.cpp b/src/master/main.cpp index eeda5346d..af9bdbc50 100644 --- a/src/master/main.cpp +++ b/src/master/main.cpp @@ -281,7 +281,7 @@ int main(int argc, char** argv) rules.emplace_back(new DisabledEndpointsFirewallRule(paths)); } - process::firewall::install(move(rules)); + process::firewall::install(std::move(rules)); } // Initialize modules. diff --git a/src/slave/main.cpp b/src/slave/main.cpp index 7eeeaae65..dbee337c3 100644 --- a/src/slave/main.cpp +++ b/src/slave/main.cpp @@ -446,7 +446,7 @@ int main(int argc, char** argv) rules.emplace_back(new DisabledEndpointsFirewallRule(paths)); } - process::firewall::install(move(rules)); + process::firewall::install(std::move(rules)); } // Initialize modules.
