Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/julia/kinds.jl
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ function _register_kinds!(kind_modules, int_to_kindstr, kind_str_to_int, mod, mo
error("Kind module ID $module_id already claimed by module $m")
end
end
_register_kinds_names!(int_to_kindstr, kind_str_to_int, module_id, names)
end

function _register_kinds_names!(int_to_kindstr, kind_str_to_int, module_id, names)
# Process names to conflate category BEGIN/END markers with the first/last
# in the category.
i = 0
Expand Down
Loading