fix(kernel/std): remove unnecessary algorithm include from utility

This commit is contained in:
2025-06-11 03:49:50 +00:00
parent 3d92a87bef
commit 1addd310ad

View File

@ -18,7 +18,6 @@
#pragma once
#include <type_traits>
#include <algorithm>
#include <tuple>
namespace std
@ -249,4 +248,4 @@ namespace std
typedef pair<first_type, second_type> pair_type;
return pair_type(std::forward<T1>(t), std::forward<T2>(u));
}
}
}