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
The following commit(s) were added to refs/heads/master by this push:
new 09501be22 [cgroups2] Add missing imports
09501be22 is described below
commit 09501be227abed8aa294639f571bbc8d8cb8ed7f
Author: Devin Leamy <[email protected]>
AuthorDate: Fri Mar 8 16:27:53 2024 +0000
[cgroups2] Add missing imports
---
src/linux/cgroups2.hpp | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/linux/cgroups2.hpp b/src/linux/cgroups2.hpp
index 4910f9014..88b1f6440 100644
--- a/src/linux/cgroups2.hpp
+++ b/src/linux/cgroups2.hpp
@@ -17,6 +17,10 @@
#ifndef __CGROUPS_V2_HPP__
#define __CGROUPS_V2_HPP__
+#include <set>
+#include <string>
+#include <vector>
+
#include <stout/nothing.hpp>
#include <stout/try.hpp>