Skip to content

Commit 58d0627

Browse files
committed
Removed redundant constraints. Bumped version to 2.7.0.7.
1 parent cce6519 commit 58d0627

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2.7.0.7
2+
-------
3+
* Removed redundant constraints.
4+
15
2.7.0.6
26
--------
37
* Relaxed upper version bound for `OpenGLRaw`.

GLUT.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: GLUT
2-
version: 2.7.0.6
2+
version: 2.7.0.7
33
synopsis: A binding for the OpenGL Utility Toolkit
44
description:
55
A Haskell binding for the OpenGL Utility Toolkit, a window system independent

src/Graphics/UI/GLUT/Fonts.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ bitmapString f s = do
7979
i <- marshalBitmapFont f
8080
mapM_ (\c -> withChar c (glutBitmapCharacter i)) s
8181

82-
withChar :: MonadIO m => Char -> (CInt -> m a) -> m a
82+
withChar :: Char -> (CInt -> m a) -> m a
8383
withChar c f = f . fromIntegral . ord $ c
8484

8585
--------------------------------------------------------------------------------

0 commit comments

Comments
 (0)