From baedab91c85cb4a95bab7d02fada87d71cc85dc0 Mon Sep 17 00:00:00 2001 From: scawful Date: Sun, 28 Sep 2025 18:12:04 -0400 Subject: [PATCH] Add include for stdlib in YAZE test file - Added `` header to `yaze_test.cc`, enabling the use of standard library functions. - This change enhances the functionality of the test suite by allowing for additional features from the C++ standard library. --- test/yaze_test.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/test/yaze_test.cc b/test/yaze_test.cc index 3346dd3d..f4bc8a56 100644 --- a/test/yaze_test.cc +++ b/test/yaze_test.cc @@ -5,6 +5,7 @@ #include #include #include +#include #include "absl/debugging/failure_signal_handler.h" #include "absl/debugging/symbolize.h"