Skip to content

Commit

Permalink
Removed workaround for issue ponylang#1975 that's now fixed as of PR p…
Browse files Browse the repository at this point in the history
  • Loading branch information
cquinn committed Jul 18, 2017
1 parent b3b6687 commit 85c911d
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/cli/command_spec.pony
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,6 @@ class val OptionSpec
match default'
| None => (typ', false, true)
| let d: _Value => (typ', d, false)
else
// Ponyc limitation: else can't happen, but segfaults without it
(_BoolType, false, false)
end

new val bool(
Expand Down Expand Up @@ -332,9 +329,6 @@ class val ArgSpec
match default'
| None => (typ', false, true)
| let d: _Value => (typ', d, false)
else
// Ponyc limitation: else can't happen, but segfaults without it
(_BoolType, false, false)
end

new val bool(
Expand Down

0 comments on commit 85c911d

Please sign in to comment.