Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
H
hoopl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Glasgow Haskell Compiler
Packages
hoopl
Commits
b4f47611
Commit
b4f47611
authored
Dec 07, 2015
by
msosn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prefix unused type variables with an underscore.
parent
d829642b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/Compiler/Hoopl/Block.hs
src/Compiler/Hoopl/Block.hs
+2
-2
No files found.
src/Compiler/Hoopl/Block.hs
View file @
b4f47611
...
...
@@ -58,8 +58,8 @@ data C
-- | Either type indexed by closed/open using type families
type
family
IndexedCO
ex
a
b
::
*
type
instance
IndexedCO
C
a
b
=
a
type
instance
IndexedCO
O
a
b
=
b
type
instance
IndexedCO
C
a
_
b
=
a
type
instance
IndexedCO
O
_
a
b
=
b
-- | Maybe type indexed by open/closed
data
MaybeO
ex
t
where
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment