Skip to content

Commit

Permalink
erlang:error/1 -> erlang:nif_error/1
Browse files Browse the repository at this point in the history
  • Loading branch information
msantos committed Nov 14, 2013
1 parent c1cb0e0 commit 1b87830
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/vert.erl
Original file line number Diff line number Diff line change
Expand Up @@ -1248,15 +1248,15 @@ cast_2(Fun, [Arg1, Arg2, Arg3, Arg4, Arg5]) ->
cast(Fun, Arg1, Arg2, Arg3, Arg4, Arg5).

cast(_,_) ->
erlang:error(not_implemented).
erlang:nif_error(not_implemented).
cast(_,_,_) ->
erlang:error(not_implemented).
erlang:nif_error(not_implemented).
cast(_,_,_,_) ->
erlang:error(not_implemented).
erlang:nif_error(not_implemented).
cast(_,_,_,_,_) ->
erlang:error(not_implemented).
erlang:nif_error(not_implemented).
cast(_,_,_,_,_,_) ->
erlang:error(not_implemented).
erlang:nif_error(not_implemented).

%%-------------------------------------------------------------------------
%%% Blocking API
Expand Down

0 comments on commit 1b87830

Please sign in to comment.