Skip to content

Commit

Permalink
Fix hygiene bug (apache#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkoniak authored and pluskid committed Jan 7, 2017
1 parent b81b26c commit 1ea44c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/symbolic-node.jl
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ macro _list_symbol_info(self, func_name)
ref_sz = Ref{MX_uint}(0)
ref_names = Ref{char_pp}(0)
@mxcall($func_name, (MX_handle, Ref{MX_uint}, Ref{char_pp}),
$self, ref_sz, ref_names)
$(esc(self)), ref_sz, ref_names)
narg = ref_sz[]
names = unsafe_wrap(Array, ref_names[], narg)
names = [Symbol(unsafe_wrap(String, x)) for x in names]
Expand Down

0 comments on commit 1ea44c9

Please sign in to comment.