Skip to content

Commit

Permalink
Fix support for Erlang 20
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanVikman committed Apr 9, 2018
1 parent b7ce214 commit 8d10981
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pp_record.erl
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ record_fields([{record_field,_,{atom,_,Field}} | Fs]) ->
[Field | record_fields(Fs)];
record_fields([{record_field,_,{atom,_,Field},_} | Fs]) ->
[Field | record_fields(Fs)];
record_fields([{typed_record_field,Field,_Type} | Fs]) ->
record_fields([Field | Fs]);
record_fields([]) ->
[].

Expand Down

0 comments on commit 8d10981

Please sign in to comment.