From f64c7078beb507220250d21fbc4f65398a199d59 Mon Sep 17 00:00:00 2001 From: Ruihang Lai Date: Sun, 2 Mar 2025 10:30:30 -0500 Subject: [PATCH] [Fix] Include `` for `std::chrono` This PR fixes an include problem in profiler.cc, which uses namespace `std::chrono` without including the header. This leads to compilation failure on Windows platform. --- src/meta_schedule/profiler.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/meta_schedule/profiler.cc b/src/meta_schedule/profiler.cc index 2f955ebf09c2..98aaef59a519 100644 --- a/src/meta_schedule/profiler.cc +++ b/src/meta_schedule/profiler.cc @@ -17,6 +17,7 @@ * under the License. */ #include +#include #include "./utils.h"