Skip to content

Commit

Permalink
Try and avoid an unused import warning
Browse files Browse the repository at this point in the history
Summary:

Test Plan:
  • Loading branch information
ndmitchell committed Dec 28, 2024
1 parent 2edb5b1 commit cadfae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/General/Intern.hs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ module General.Intern(
import Development.Shake.Classes
import Foreign.Storable
import Data.Word
import Prelude hiding (lookup)
import qualified Data.HashMap.Strict as Map
import Data.List(foldl')

Check failure on line 12 in src/General/Intern.hs

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 9.12)

The import of ‘Data.List’ is redundant

Check failure on line 12 in src/General/Intern.hs

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 9.12)

The import of ‘Data.List’ is redundant

Check failure on line 12 in src/General/Intern.hs

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 9.12)

The import of ‘Data.List’ is redundant

Check failure on line 12 in src/General/Intern.hs

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 9.10)

The import of ‘Data.List’ is redundant

Check failure on line 12 in src/General/Intern.hs

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 9.10)

The import of ‘Data.List’ is redundant

Check failure on line 12 in src/General/Intern.hs

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 9.10)

The import of ‘Data.List’ is redundant

Check failure on line 12 in src/General/Intern.hs

View workflow job for this annotation

GitHub Actions / test (windows-latest)

The import of ‘Data.List’ is redundant

Check failure on line 12 in src/General/Intern.hs

View workflow job for this annotation

GitHub Actions / test (windows-latest)

The import of ‘Data.List’ is redundant

Check failure on line 12 in src/General/Intern.hs

View workflow job for this annotation

GitHub Actions / test (windows-latest)

The import of ‘Data.List’ is redundant

Check failure on line 12 in src/General/Intern.hs

View workflow job for this annotation

GitHub Actions / test (macOS-latest)

The import of ‘Data.List’ is redundant

Check failure on line 12 in src/General/Intern.hs

View workflow job for this annotation

GitHub Actions / test (macOS-latest)

The import of ‘Data.List’ is redundant

Check failure on line 12 in src/General/Intern.hs

View workflow job for this annotation

GitHub Actions / test (macOS-latest)

The import of ‘Data.List’ is redundant
import Prelude hiding (lookup)


-- Invariant: The first field is the highest value in the Map
Expand Down

0 comments on commit cadfae3

Please sign in to comment.