From 2d6b238f348f071ad211fdbd59f8e3183b819ae6 Mon Sep 17 00:00:00 2001 From: Ashar Fuadi Date: Sun, 11 Aug 2024 18:22:17 +0800 Subject: [PATCH] Fix CI by renaming ambiguous 'data' in tests to something else (#189) --- test/integration/resources/os/program_ml.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/resources/os/program_ml.cpp b/test/integration/resources/os/program_ml.cpp index 1734324f..ec1abafe 100644 --- a/test/integration/resources/os/program_ml.cpp +++ b/test/integration/resources/os/program_ml.cpp @@ -1,8 +1,8 @@ #include using namespace std; -int data[10000000]; +int arr[10000000]; int main() { - return data[42]; + return arr[42]; }