From 505543e9b48c4bea05a59a00d4f900799cb3236b Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Sun, 5 Feb 2023 20:59:42 +0100 Subject: [PATCH] Remove import of std::array --- resources/examples/fannkuch-redux.c3 | 1 - resources/examples/spectralnorm.c3 | 1 - resources/testfragments/toposort.c3 | 1 - 3 files changed, 3 deletions(-) diff --git a/resources/examples/fannkuch-redux.c3 b/resources/examples/fannkuch-redux.c3 index 077fc523f..3aca2fdee 100644 --- a/resources/examples/fannkuch-redux.c3 +++ b/resources/examples/fannkuch-redux.c3 @@ -1,5 +1,4 @@ module fannkuch; -import std::array; import std::io; import std::math; import libc; diff --git a/resources/examples/spectralnorm.c3 b/resources/examples/spectralnorm.c3 index ebc6463f9..faacf67f8 100644 --- a/resources/examples/spectralnorm.c3 +++ b/resources/examples/spectralnorm.c3 @@ -1,5 +1,4 @@ module spectralnorm; -import std::array; import std::io; import std::math; diff --git a/resources/testfragments/toposort.c3 b/resources/testfragments/toposort.c3 index 1f88d588a..773328beb 100644 --- a/resources/testfragments/toposort.c3 +++ b/resources/testfragments/toposort.c3 @@ -1,6 +1,5 @@ module topologicalsort; import std::mem; -import std::array; extern fn void printf(char* x, ...);