Commit 3abe12df by Zachary Snow

support exclusion of the unbased unsized conversion

parent c822d2e8
## Unreleased
### New Features
* Added support for excluding the conversion of unbased unsized literals (e.g.,
`'1`, `'x`) via `--exclude UnbasedUniszed`
## v0.0.9
### Breaking Changes
......
......@@ -76,7 +76,7 @@ mainPhases selectExclude =
, Convert.Inside.convert
, Convert.IntTypes.convert
, Convert.MultiplePacked.convert
, Convert.UnbasedUnsized.convert
, selectExclude Job.UnbasedUnsized Convert.UnbasedUnsized.convert
, Convert.Cast.convert
, Convert.ParamType.convert
, Convert.HierConst.convert
......
......@@ -24,6 +24,7 @@ data Exclude
| Interface
| Logic
| Succinct
| UnbasedUnsized
deriving (Typeable, Data, Eq)
data Write
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment