File tree Expand file tree Collapse file tree 4 files changed +4
-12
lines changed Expand file tree Collapse file tree 4 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -278,9 +278,7 @@ mkRenderExampleImages renderTargets = [d|
278
278
else VarE render `AppE ` fp `AppE ` sym
279
279
280
280
findHaskellPaths :: FilePath -> IO [FilePath ]
281
- findHaskellPaths srcDir = do
282
- (paths, _) <- G. globDir [G. compile " **/*.hs" , G. compile " **/*.hsc" ] srcDir
283
- pure $ concat paths
281
+ findHaskellPaths = fmap concat . G. globDir [G. compile " **/*.hs" , G. compile " **/*.hsc" ]
284
282
285
283
haddockToHaskell :: T. Text -> T. Text
286
284
haddockToHaskell =
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ test-suite doc-images-opencv-extra
129
129
, containers >= 0.5.6.2
130
130
, data-default >= 0.7.1.1
131
131
, directory >= 1.2.2
132
- , Glob >= 0.7.5
132
+ , Glob >= 0.9
133
133
, haskell-src-exts >= 1.18.2
134
134
, JuicyPixels >= 3.2.8.1
135
135
, linear >= 1.20.4
Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ test-suite doc-images-opencv
227
227
, containers >= 0.5.6.2
228
228
, data-default >= 0.7.1.1
229
229
, directory >= 1.2.2
230
- , Glob >= 0.7.5
230
+ , Glob >= 0.9
231
231
, haskell-src-exts >= 1.18.2
232
232
, JuicyPixels >= 3.2.8.1
233
233
, linear >= 1.20.4
@@ -262,7 +262,7 @@ test-suite test-opencv
262
262
, lens >= 4.13
263
263
, linear >= 1.20.4
264
264
, opencv
265
- , QuickCheck >= 2.8.2
265
+ , QuickCheck >= 2.10.1
266
266
, repa >= 3.4.0.2
267
267
, tasty >= 0.11.0.2
268
268
, tasty-hunit >= 0.9.2
Original file line number Diff line number Diff line change @@ -398,12 +398,6 @@ eye_m33 = V3 (V3 1 0 0) (V3 0 1 0) (V3 0 0 1)
398
398
-- QuikcCheck Arbitrary Instances
399
399
--------------------------------------------------------------------------------
400
400
401
- instance QC. Arbitrary CFloat where
402
- arbitrary = CFloat <$> QC. arbitrary
403
-
404
- instance QC. Arbitrary CDouble where
405
- arbitrary = CDouble <$> QC. arbitrary
406
-
407
401
instance (QC. Arbitrary a ) => QC. Arbitrary (V2 a ) where
408
402
arbitrary = V2 <$> QC. arbitrary <*> QC. arbitrary
409
403
You can’t perform that action at this time.
0 commit comments